-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "@4bitlabs/sci.js",
"version": "0.0.0",
"description": "A monorepo of packages, utilities and apps for encoding and decoding assets from Sierra On-line SCI0 engine games.",
"private": true,
"main": "",
"scripts": {
"lint": "eslint .",
"format:fix": "prettier -w .",
"build": "lerna run build",
"rebuild": "nx reset && lerna run clean:wipe && lerna run build",
"test": "lerna run test",
"docs": "typedoc --options typedoc.all.json",
"docs:rebuild": "rimraf docs/ && npm run docs",
"clean": "lerna run clean",
"clean:wipe": "lerna run clean:wipe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/32bitkid/sci.js.git"
},
"author": "J. Holmes <32bitkid@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/32bitkid/sci.js/issues"
},
"homepage": "https://github.com/32bitkid/sci.js#readme",
"workspaces": [
"libs/blur-filters",
"libs/codecs",
"libs/color-space",
"libs/color",
"libs/image",
"libs/pmachine",
"libs/resize-filters",
"libs/sci0",
"libs/sci0-renderer",
"libs/vec2",
"libs/crt-lite",
"apps/scibud"
],
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/jest": "^29.5.12",
"conventional-changelog-eslint": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"lerna": "^8.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.3",
"typedoc": "^0.26.5",
"typedoc-plugin-mdn-links": "^3.2.5",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
}
}