-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.56 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
{
"name": "@webpd/runtime",
"version": "0.1.0",
"description": "Runtime environment for WebPd",
"main": "./dist/WebPd_runtime/src/index.js",
"types": "./dist/src/index.d.ts",
"type": "module",
"license": "LGPL-3.0",
"author": "Sébastien Piquemal",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' npx jest --config node_modules/@webpd/dev/configs/jest.js",
"build:dist": "npx rollup --config configs/dist.rollup.mjs",
"build:worklet-processor": "node --experimental-specifier-resolution=node --loader ts-node/esm --no-warnings ./scripts/transpile-worklet-processor.ts",
"build": "npm run clean ; npm run build:worklet-processor && npm run build:dist",
"clean": "rm -rf dist",
"prettier": "npm explore @webpd/dev -- npm run prettier $(pwd)/src",
"eslint": "npm explore @webpd/dev -- npm run eslint $(pwd)/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebpiq/WebPd_runtime.git"
},
"bugs": {
"url": "https://github.com/sebpiq/WebPd_runtime/issues"
},
"homepage": "https://github.com/sebpiq/WebPd_runtime#readme",
"dependencies": {
"fetch-retry": "^5.0.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.5",
"@webpd/compiler": "file:../WebPd_compiler",
"@webpd/dev": "file:../WebPd_dev",
"rollup": "^3.7.0",
"rollup-plugin-string": "^3.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0"
}
}