ini/package.json

42 lines
1.1 KiB
JSON

{
"name": "@hyper-tuner/ini",
"description": "HyperTuner INI parser",
"version": "0.7.6",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyper-tuner/ini"
},
"main": "dist/ini.js",
"types": "dist/ini.d.ts",
"bin": {
"hyper-tuner-ini": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "tsc --watch",
"generate": "npm run build && node test/test.js generate",
"test": "npm run build && node test/test.js",
"lint": "tsc && npm run lint:rome",
"lint:rome": "rome ci src",
"lint:fix": "rome format --write src && rome check --apply src",
"lint:fix:unsafe": "rome check --apply-unsafe src"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.6.0",
"@types/parsimmon": "^1.10.6",
"rome": "^12.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@hyper-tuner/types": "git+https://github.com/hyper-tuner/types.git",
"js-yaml": "^4.1.0",
"parsimmon": "^1.18.1"
}
}