-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.74 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
{
"name": "simple-inventory",
"version": "3.0.1",
"description": "Simple inventory system for Twine/SugarCube-2.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "node build.js",
"demo": "tweego -o docs/demo.html test dist",
"docs": "docsify serve docs -o",
"recipe:collectibles": "tweego -o docs/recipes/collectibles.html dist docs/recipes/collectibles",
"recipe:crafting": "tweego -o docs/recipes/crafting.html dist docs/recipes/crafting",
"recipe:keys": "tweego -o docs/recipes/keys.html dist docs/recipes/keys",
"recipe:potions": "tweego -o docs/recipes/potions.html dist docs/recipes/potions",
"recipe:shop": "tweego -o docs/recipes/shop.html dist docs/recipes/shop",
"recipe:equipment": "tweego -o docs/recipes/equipment.html dist docs/recipes/equipment",
"recipe:all": "npm run recipe:collectibles & npm run recipe:crafting & npm run recipe:keys & npm run recipe:potions & npm run recipe:shop & npm run recipe:equipment",
"build:all": "npm run build && npm run demo & npm run recipe:all",
"pack": "node pack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChapelR/simple-inventory.git"
},
"keywords": [
"inventory",
"twine"
],
"private": true,
"author": "Chapel",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/ChapelR/simple-inventory/issues"
},
"homepage": "https://inventory.twinelab.net/",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"autoprefixer": "^9.7.4",
"fs-jetpack": "^4.1.0",
"git-commit-id": "^2.0.1",
"node-zip": "^1.1.1",
"postcss": "^8.2.10",
"postcss-clean": "^1.2.2",
"terser": "^5.6.1"
}
}