forked from lizozom/clippyts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.52 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
{
"name": "@meese-os/clippy",
"version": "1.0.0",
"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",
"demo": "concurrently \"http-server -a localhost -p 1234\" \"open http://localhost:1234/demo\"",
"start": "npm run build && npm run demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meese-os/clippy.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/meese-os/clippy/issues"
},
"homepage": "https://github.com/meese-os/clippy#readme",
"devDependencies": {
"rollup-plugin-uglify": "^6.0.4",
"@open-wc/building-rollup": "^3.0.2",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"http-server": "^14.1.1",
"live-server": "^1.2.2",
"rimraf": "^5.0.5",
"rollup": "^4.4.0",
"rollup-plugin-styles": "^4.0.3",
"typescript": "^5.2.2"
}
}