-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "extwee",
"version": "2.3.14",
"description": "A story compiler tool using Twine-compatible formats",
"author": "Dan Cox",
"main": "index.js",
"exports": {
".": "./index.js",
"./web": "./build/extwee.core.min.js",
"./web/core": "./build/extwee.core.min.js",
"./web/twine1html": "./build/extwee.twine1html.min.js",
"./web/twine2archive": "./build/extwee.twine2archive.min.js",
"./web/tws": "./build/extwee.tws.min.js"
},
"bin": {
"extwee": "src/extwee.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"lint": "eslint ./src/**/*.js --fix",
"lint:test": "eslint ./test/**/*.test.js --fix",
"build:web": "webpack",
"analyze:web": "webpack-bundle-analyzer build/extwee.web.min.js",
"gen-types": "npx -p typescript tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"copy:build": "cp build/*.js docs/build",
"all": "npm run lint && npm run lint:test && npm run test && npm run build:web && npm run gen-types && npm run copy:build"
},
"keywords": [
"twine",
"twee",
"parser",
"compiler"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.3",
"graphemer": "^1.4.0",
"html-entities": "^2.6.0",
"node-html-parser": "^7.1.0",
"pickleparser": "^0.2.1",
"semver": "^7.7.4",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^9.39.2",
"@inquirer/prompts": "^8.3.0",
"@types/node": "^25.3.3",
"@types/semver": "^7.7.1",
"babel-loader": "^10.0.0",
"clean-jsdoc-theme": "^4.3.0",
"core-js": "^3.48.0",
"eslint": "^10.0.2",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsdoc": "^62.7.1",
"globals": "^17.4.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^6.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/videlais/extwee.git"
},
"bugs": {
"url": "https://github.com/videlais/extwee/issues"
},
"type": "module",
"types": "./types/index.d.ts",
"engines": {
"node": ">=18.18.0"
}
}