ini/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2021-09-26 09:28:35 -07:00
{
2022-06-30 15:44:57 -07:00
"name": "@hyper-tuner/ini",
"description": "HyperTuner INI parser",
2022-12-11 09:41:53 -08:00
"version": "0.7.6",
2021-09-26 09:28:35 -07:00
"license": "MIT",
"repository": {
"type": "git",
2022-06-30 15:44:57 -07:00
"url": "https://github.com/hyper-tuner/ini"
2021-09-26 09:28:35 -07:00
},
"main": "dist/ini.js",
"types": "dist/ini.d.ts",
2022-10-18 02:52:40 -07:00
"bin": {
2022-10-18 02:56:07 -07:00
"hyper-tuner-ini": "dist/cli.js"
2022-10-18 02:52:40 -07:00
},
2021-09-26 09:28:35 -07:00
"files": [
"dist"
],
"scripts": {
"build": "tsc",
2022-10-23 06:55:46 -07:00
"prepare": "npm run build",
2021-09-26 09:28:35 -07:00
"start": "tsc --watch",
2022-12-01 13:51:23 -08:00
"generate": "npm run build && node test/test.js generate",
"test": "npm run build && node test/test.js",
2023-09-11 07:34:31 -07:00
"lint": "tsc && npm run lint:rome",
"lint:rome": "rome ci src",
2022-12-01 13:51:23 -08:00
"lint:fix": "rome format --write src && rome check --apply src",
2023-09-11 07:34:31 -07:00
"lint:fix:unsafe": "rome check --apply-unsafe src"
2021-09-26 09:28:35 -07:00
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
2023-09-11 07:34:31 -07:00
"@types/node": "^20.6.0",
2021-09-26 09:28:35 -07:00
"@types/parsimmon": "^1.10.6",
2023-09-11 07:34:31 -07:00
"rome": "^12.1.3",
"typescript": "^5.2.2"
2021-09-26 09:28:35 -07:00
},
"dependencies": {
2023-09-11 07:34:31 -07:00
"@hyper-tuner/types": "git+https://github.com/hyper-tuner/types.git",
2021-09-26 09:28:35 -07:00
"js-yaml": "^4.1.0",
2022-01-08 12:27:47 -08:00
"parsimmon": "^1.18.1"
2021-09-26 09:28:35 -07:00
}
}