-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "krono-flow-nodejs",
"version": "0.0.1",
"maintainers": [
{
"name": "army8735",
"email": "army8735@qq.com"
}
],
"scripts": {
"build": "rm -rf dist && tsc && rollup -c rollup.config.mjs && tsc --preserveWatchOutput",
"dev": "rm -rf dist && concurrently \"npm:dev:js\" \"npm:dev:types\"",
"dev:js": "rollup -c rollup.config.mjs -w",
"dev:types": "tsc -w --preserveWatchOutput"
},
"peerDependencies": {},
"dependencies": {
"@napi-rs/canvas": "^0.1.91",
"fluent-ffmpeg": "^2.1.3",
"gl": "^9.0.0-rc.9",
"krolis": "^0.1.4",
"lottie-web": "^5.13.0",
"webgpu": "^0.3.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node": "^25.0.8",
"@webgpu/types": "^0.1.69",
"concurrently": "^9.2.1",
"expect.js": "^0.3.1",
"rimraf": "^5.0.10",
"rollup": "^4.46.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"webstorm-disable-index": "^1.2.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=24.0.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"author": "army8735 <army8735@qq.com>",
"repository": "git@github.com:krolisjs/nodejs.git"
}