-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.74 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
57
58
59
60
61
62
{
"name": "@4bitlabs/sci.js",
"version": "0.0.0",
"private": true,
"description": "A monorepo of packages, utilities and apps for encoding and decoding assets from Sierra On-line SCI0 engine games.",
"homepage": "https://github.com/32bitkid/sci.js#readme",
"bugs": {
"url": "https://github.com/32bitkid/sci.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/32bitkid/sci.js.git"
},
"license": "ISC",
"author": "J. Holmes <32bitkid@gmail.com>",
"type": "module",
"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",
"apps/sciotf"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"clean:wipe": "lerna run clean:wipe",
"docs": "typedoc --options typedoc.all.json",
"docs:rebuild": "rimraf docs/ && npm run docs",
"format:fix": "prettier -w .",
"lint": "biome check",
"rebuild": "nx reset && lerna run clean:wipe && lerna run build",
"test": "lerna run test",
"test:coverage": "jest --projects libs/* --coverage --coverageReporters=text"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"conventional-changelog-conventionalcommits": "^9.3.1",
"lerna": "^9.0.7",
"rimraf": "^6.1.3",
"tsdown": "^0.22.14",
"typedoc": "^0.28.20",
"typedoc-plugin-mdn-links": "^5.1.1",
"typedoc-plugin-missing-exports": "^4.1.4",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"allowScripts": {
"fsevents@2.3.3": true,
"nx@22.7.7": true,
"gl@9.0.0-rc.10": true,
"sharp@0.33.5": true
}
}