sparkscript
Version:
DiamondFire for Javascript.
59 lines • 1.51 kB
JSON
{
"name": "sparkscript",
"version": "1.0.0-alpha.6",
"description": "DiamondFire for Javascript.",
"main": "./dist/lib/index.js",
"types": "./dist/types/index.d.ts",
"author": "UserUNP",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UserUNP/sparkscript.git"
},
"bugs": {
"url": "https://github.com/UserUNP/sparkscript/issues"
},
"homepage": "https://github.com/UserUNP/sparkscript",
"dependencies": {
"nbt-ts": "^1.3.5",
"tslib": "^2.4.1",
"ws": "*"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/madge": "^5.0.0",
"@types/node": "^18.11.10",
"@types/pako": "^2.0.0",
"@types/ws": "^8.5.3",
"browserify": "^17.0.0",
"jest": "^29.3.1",
"rimraf": "^4.0.7",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.0-beta.7",
"typescript": "^5.0.0-dev.20230101"
},
"files": [
"./dist",
"./src",
"./README.md",
"./LICENSE"
],
"keywords": [
"diamondfire",
"df",
"sparkscript",
"spark",
"minecraft",
"mc"
],
"scripts": {
"bundle": "browserify dist/lib/index.js -o bundle.js --standalone sparkscript",
"crlfix": "find . -type f -print0 | xargs -0 dos2unix",
"cleanbuild": "rimraf ./dist && tsc",
"buildwatch": "rimraf ./dist && tsc -w",
"build": "tsc && typedoc && npm run bundle",
"test": "jest tests/",
"simplifydump": "node ./scripts/simplifyActionDump",
"madge": "madge --circular --extensions ts ./src"
}
}