-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
75 lines (75 loc) · 2.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "object-gui",
"version": "2.0.2",
"description": "Object GUI - Fully customizable Javascript Object GUI Editor",
"keywords": [
"editor",
"dat.gui",
"javascript",
"wysiwyg",
"object",
"gui",
"object-gui",
"objectgui"
],
"author": "Matteo Bruni <[email protected]>",
"homepage": "https://github.com/matteobruni/object-gui/",
"license": "MIT",
"directories": {
"dist": "dist"
},
"files": [
"dist/**/*"
],
"main": "dist/js/index.js",
"jsdelivr": "dist/js/object-gui.min.js",
"unpkg": "dist/js/object-gui.min.js",
"browser": "dist/js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/matteobruni/object-gui.git"
},
"scripts": {
"start": "yarn build && yarn build:demo && node ./demo/app.js",
"prettify:src": "prettier --write ./src",
"prettify:readme": "prettier --write ./README.md",
"lint": "eslint src/ts --ext .js,.jsx,.ts,.tsx --fix",
"clear:dist": "rimraf -f ./dist",
"build:ts:es": "tsc -b tsconfig.browser.json",
"build:ts": "tsc",
"build:css": "npx sass src/scss/editor.scss dist/css/object-gui.css && npx cleancss dist/css/object-gui.css -o dist/css/object-gui.min.css",
"build": "yarn clear:dist && yarn build:css && yarn prettify:src && yarn build:ts:es && yarn lint && webpack --mode production && yarn build:ts && yarn prettify:readme",
"build:demo": "yarn build:demo:style && yarn build:demo:index",
"build:demo:index": "npx pug ./demo/views/index.pug",
"build:demo:style": "npx stylus ./demo/public/stylesheets/main.styl",
"prepack": "yarn build"
},
"bugs": {
"url": "https://github.com/matteobruni/object-gui/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.23.7",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"babel-loader": "9.1.3",
"clean-css-cli": "5.6.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"express": "4.19.2",
"fibers": "5.0.3",
"helmet": "7.1.0",
"prettier": "3.2.5",
"pug": "3.0.3",
"pug-cli": "1.0.0-alpha6",
"rimraf": "5.0.7",
"sass": "1.80.4",
"sass-loader": "14.2.1",
"stylus": "0.62.0",
"terser-webpack-plugin": "5.3.9",
"typescript": "5.4.5",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4"
}
}