extwee
Version:
A story compiler tool using Twine-compatible formats
69 lines (68 loc) • 1.89 kB
JSON
{
"name": "extwee",
"version": "2.3.2",
"description": "A story compiler tool using Twine-compatible formats",
"author": "Dan Cox",
"main": "index.js",
"bin": {
"extwee": "src/extwee.js"
},
"scripts": {
"test": "jest --runInBand",
"lint": "eslint ./src/**/*.js --fix",
"lint:test": "eslint ./test/**/*.test.js --fix",
"build:web": "webpack",
"gen-types": "npx -p typescript tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"all": "npm run lint && npm run lint:test && npm run test && npm run build:web && npm run gen-types"
},
"keywords": [
"twine",
"twee",
"parser",
"compiler"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.0",
"graphemer": "^1.4.0",
"html-entities": "^2.6.0",
"node-html-parser": "^7.0.1",
"pickleparser": "^0.2.1",
"semver": "^7.7.2",
"shelljs": "^0.10.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@eslint/js": "^9.29.0",
"@inquirer/prompts": "^7.6.0",
"@types/node": "^24.1.0",
"@types/semver": "^7.7.0",
"@types/uuid": "^10.0.0",
"babel-loader": "^10.0.0",
"clean-jsdoc-theme": "^4.3.0",
"core-js": "^3.43.0",
"eslint": "^9.29.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^52.0.2",
"globals": "^16.3.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"webpack": "^5.99.9",
"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"
}