forked from pi0/clippyjs
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·48 lines (48 loc) · 1.51 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
{
"name": "clippyts",
"version": "1.0.5",
"description": "Same old Clippy. Modern JavaScript.",
"main": "dist/index.js",
"web": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"increase-mem": "export NODE_OPTIONS=--max_old_space_size=4096",
"build-js": "rollup -c rollup.config.js",
"build": "npm run clean && npm run build-js",
"clean": "rimraf dist",
"watch": "rollup -c -w",
"prepublish": "npm run build",
"start": "npm run build && npm run open",
"demo": "concurrently \"http-server -a localhost -p 1234\" \"open http://localhost:1234/demo\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lizozom/clippyts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lizozom/clippyts/issues"
},
"homepage": "https://github.com/lizozom/clippyts#readme",
"devDependencies": {
"@lopatnov/rollup-plugin-uglify": "^2.1.5",
"@open-wc/building-rollup": "^2.2.1",
"@rollup/plugin-buble": "^1.0.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jquery": "^3.5.16",
"concurrently": "^8.0.1",
"copyfiles": "^2.4.1",
"http-server": "^14.1.1",
"live-server": "^1.2.2",
"rimraf": "^5.0.0",
"rollup": "^2.79.1",
"rollup-plugin-styles": "^4.0.0",
"typescript": "^5.0.4"
}
}