-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (98 loc) · 5.43 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "dbpf",
"author": {
"name": "anonhostpi",
"email": "anon@hostpi.onmicrosoft.com",
"url": "https://github.com/anonhostpi"
},
"license": "MIT",
"version": "1.1.0",
"description": "A library for reading and writing DBPF files.",
"keywords": [
"dbpf", "dbpf-reader", "dbpf-extractor", "dbpf-packs", ".package",
".save", ".trayitem", ".world", ".household", "the-sims-2",
"the-sims-3", "the-sims-4", "simcity-4", "simcity-2013", "simcity-5",
"spore", "spore-galactic-adventures", "spore-creature-creator",
"modding", "mod", "modder", "modders", "modding-community", "game-data",
"game-files", "game-file", "game-file-format", "file-format",
"file-formats", "file", "files", "file-system"
],
"homepage": "https://anonhostpi.github.io/DBPF.js",
"repository": {
"type": "git",
"url": "https://github.com/anonhostpi/DBPF.js"
},
"bugs": {
"url": "https://github.com/anonhostpi/DBPF.js/issues"
},
"main": "./dist/DBPF.js",
"types": "./dist/DBPF.d.ts",
"browser": "./dist/DBPF.web.js",
"scripts": {
"clean": "rimraf ./dist && mkdirp ./dist",
"make:node": "tsc --project ./tsconfig.esm.json",
"premake:web": "tsc --project ./tsconfig.polyfills.json",
"make:web": "webpack --config webpack.config.js",
"make:test": "webpack --config webpack.test.config.js",
"make:docs": "typedoc",
"make:resources": "node scripts/resources.js",
"premake:docusaurus": "rimraf ./pub/build",
"make:docusaurus": "npx create-docusaurus@latest pub/build classic --typescript --skip-install",
"postmake:docusaurus": "rimraf ./pub/build/blog ./pub/build/docs ./pub/build/src ./pub/build/static/img",
"build": "npm run make:resources && npm run make:node && npm run make:web",
"build:web": "npm run make:web",
"build:test": "npm run make:web && npm run make:test && copyfiles -f ./dist/dbpf.web.js ./test/serve && copyfiles -f ./test/index.html ./test/serve",
"build:node": "npm run make:node",
"prebuild": "npm run clean",
"prebuild:test": "npm run build:web",
"test": "npm run build:test && npm run test:serve",
"test:serve": "cd ./test/serve && live-server --port=8080 --open=./index.html",
"test:pub": "npm run docs:pub && npm --prefix ./pub/build run serve",
"prepack": "npm run build && npm run manifest:prepare",
"postpack": "npm run manifest:restore",
"manifest:prepare": "node scripts/manifest.js",
"manifest:backup": "node scripts/manifest.js --backup",
"manifest:restore": "node scripts/manifest.js --restore",
"manifest:format": "node scripts/manifest.js --format",
"predevinstall": "npm run manifest:backup",
"devinstall": "npm install",
"postdevinstall": "npm run manifest:format",
"predevuninstall": "npm run manifest:backup",
"devuninstall": "npm uninstall",
"postdevuninstall": "npm run manifest:format",
"prepublishOnly": "rimraf ./scripts/manifests",
"docs": "npm run make:resources && npm run make:docs",
"predocs": "rimraf ./wiki",
"postdocs": "node scripts/docs.js",
"docs:pub": "node scripts/pub.js",
"predocs:pub": "npm run build:test && npm run docs && npm run make:docusaurus"
},
"devDependencies": {
"@docusaurus/preset-classic": "^3.5.2",
"@docusaurus/types": "^3.5.2",
"@microsoft/tsdoc": "^0.15.0",
"@types/node": "^22.3.0",
"copy-folder-util": "^1.1.4",
"copyfiles": "^2.4.1",
"live-server": "^1.2.2",
"mime": "^4.0.4",
"mkdirp": "^3.0.1",
"prism-react-renderer": "^2.4.0",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"tslib": "^2.4.0",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.6",
"typescript": "~5.4.5",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"yaml": "^2.5.0"
},
"dependencies": {
"buffer": "^6.0.3",
"comlink": "^4.4.1",
"eventemitter3": "^5.0.1",
"process": "^0.11.10",
"proper-lockfile": "^4.1.2"
}
}