-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@slashd/run",
"version": "0.1.3",
"description": "Run user-provided code in a Web Worker",
"homepage": "https://slashd.cc",
"unpkg": "dist/slashd-run.min.js",
"module": "src/index.js",
"type": "module",
"scripts": {
"start": "BUNDLE_VERSION=development rollup -c --watch",
"bump_pre": "git add -u && git commit -m \"bump release\" && npm version patch",
"bump": "npm run bump_pre && BUNDLE_VERSION=production rollup -c && git push && npm publish",
"test": "browser-sync start -s -f \"dist/*, test/*\" --startPath test --cors true"
},
"files": [
"dist/slashd-run.min.js",
"src/index.js"
],
"globals": {
"module": false,
"console": false,
"exports": false
},
"engines": {
"node": ">=16.0.0"
},
"standard": {},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"browser-sync": "3.0.3",
"eslint": "8.57.0",
"rollup": "4.28.1",
"standard": "17.1.2"
}
}