forked from isahann/clippyts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.31 KB
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
{
"name": "clippyts",
"version": "1.0.4",
"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"
},
"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",
"dependencies": {
},
"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",
"copyfiles": "^2.4.1",
"rimraf": "^4.3.0",
"rollup": "^2.14.0",
"rollup-plugin-styles": "^4.0.0",
"typescript": "^4.9.5"
}
}