-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "inequality",
"version": "1.1.4",
"description": "A symbolic equation editor for the web",
"private": false,
"main": "./lib/main.js",
"files": [
"lib"
],
"types": "./lib/src/Inequality.d.ts",
"scripts": {
"dev": "webpack --watch --mode development",
"build": "webpack --mode production",
"prepublishOnly": "yarn && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaacphysics/inequality.git"
},
"keywords": [],
"author": "Andrea Franceschini <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/isaacphysics/inequality/issues"
},
"homepage": "https://github.com/isaacphysics/inequality#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@types/lodash": "^4.17.7",
"@types/node": "^18.19.50",
"@types/p5": "^1.7.6",
"babel-loader": "^8.3.0",
"file-loader": "^6.2.0",
"lodash": "^4.17.21",
"p5": "^1.10.0",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-dashboard": "^3.3.8"
},
"peerDependencies": {
"p5": "^1.10.0"
},
"browserslist": [
"> 5%",
"last 2 versions",
"not ie <= 8"
]
}