-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "screeps-clockwork",
"version": "0.5.0",
"description": "A WASM movement library for Screeps",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "run-s build:lib build:src",
"build:lib": "wasm-pack build --target web --out-dir src/wasm --config build.rustflags=[\\'-Ctarget-feature=-reference-types\\',\\'-Ctarget-feature=-multivalue\\',\\'-Ctarget-feature=-sign-ext\\'] -Z build-std=std,panic_abort",
"build:src": "rollup -c",
"build:docs": "typedoc",
"watch": "run-s build watch:both",
"watch:lib": "cargo-watch -w lib -s \"npm run build:lib\"",
"watch:src": "wait-on src/wasm/screeps_clockwork_bg.wasm && rollup -cw",
"watch:pserver": "rollup -cw --environment DEST:pserver",
"watch:both": "run-p watch:lib watch:pserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glitchassassin/screeps-clockwork.git"
},
"keywords": [
"typescript",
"screeps",
"wasm",
"pathfinding"
],
"author": "Jon Winsley <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/glitchassassin/screeps-clockwork/issues"
},
"homepage": "https://github.com/glitchassassin/screeps-clockwork#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^12.1.1",
"@rollup/plugin-wasm": "^6.2.2",
"@types/node": "^22.10.1",
"@types/screeps": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rollup": "2.79.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-screeps": "^1.0.1",
"source-map": "0.6.1",
"tslib": "^2.8.1",
"typedoc": "^0.27.3",
"typescript": "^5.7.2"
},
"dependencies": {
"fastestsmallesttextencoderdecoder-encodeinto": "^1.0.22"
},
"type": "module",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
}
}