routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+106
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"name": "@ota-meshi/ast-token-store",
|
||||
"version": "0.3.0",
|
||||
"description": "A class library that provides an API similar to ESLint's token store",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./lib/index.mjs",
|
||||
"default": "./lib/index.mjs"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^20.19.0 || ^22.13.0 || >=24"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:tsdown",
|
||||
"build:tsdown": "tsdown",
|
||||
"lint": "npm run lint:js && npm run lint:ts",
|
||||
"lint:js": "eslint .",
|
||||
"lint:ts": "npm run tsc",
|
||||
"tsc": "tsc",
|
||||
"eslint-fix": "eslint . --fix",
|
||||
"test": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --timeout=60000",
|
||||
"test:debug": "node --experimental-strip-types --experimental-transform-types ./node_modules/mocha/bin/mocha.js \"tests/src/**/*.ts\" --reporter=dot --timeout=60000",
|
||||
"test:cover": "c8 --reporter=lcov --reporter=text npm run test:debug",
|
||||
"ts": "node --import=tsx",
|
||||
"mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js",
|
||||
"update": "node --experimental-strip-types --experimental-transform-types ./tools/update.ts",
|
||||
"generate:version": "npm run update && npm run lint -- --fix",
|
||||
"changeset:version": "changeset version && npm i && npm run generate:version && git add --all",
|
||||
"changeset:publish": "npm run build && changeset publish"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ota-meshi/ast-token-store.git"
|
||||
},
|
||||
"keywords": [
|
||||
"eslint",
|
||||
"token-store"
|
||||
],
|
||||
"author": "Yosuke Ota",
|
||||
"funding": "https://github.com/sponsors/ota-meshi",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ota-meshi/ast-token-store/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ota-meshi/ast-token-store/",
|
||||
"devDependencies": {
|
||||
"@changesets/changelog-github": "^0.5.1",
|
||||
"@changesets/cli": "^2.28.1",
|
||||
"@eslint/core": "^1.0.0",
|
||||
"@eslint/markdown": "^7.4.0",
|
||||
"@ota-meshi/eslint-plugin": "^0.20.0",
|
||||
"@shikijs/vitepress-twoslash": "^3.0.0",
|
||||
"@types/eslint": "^9.6.1",
|
||||
"@types/eslint-scope": "^8.0.0",
|
||||
"@types/eslint-utils": "^3.0.5",
|
||||
"@types/estree": "^1.0.6",
|
||||
"@types/json-schema": "^7.0.15",
|
||||
"@types/mdast": "^4.0.4",
|
||||
"@types/mocha": "^10.0.10",
|
||||
"@types/node": "^24.0.0",
|
||||
"@types/semver": "^7.5.8",
|
||||
"assert": "^2.1.0",
|
||||
"c8": "^10.1.3",
|
||||
"eslint": "^10.0.1",
|
||||
"eslint-compat-utils": "^0.6.4",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"eslint-plugin-eslint-comments": "^3.2.0",
|
||||
"eslint-plugin-eslint-plugin": "^7.0.0",
|
||||
"eslint-plugin-jsdoc": "^62.7.0",
|
||||
"eslint-plugin-json-schema-validator": "^6.0.0",
|
||||
"eslint-plugin-jsonc": "^2.19.1",
|
||||
"eslint-plugin-markdown": "^5.1.0",
|
||||
"eslint-plugin-markdown-links": "^0.7.0",
|
||||
"eslint-plugin-markdown-preferences": "^0.40.2",
|
||||
"eslint-plugin-n": "^17.16.2",
|
||||
"eslint-plugin-node-dependencies": "^1.0.0",
|
||||
"eslint-plugin-prettier": "^5.2.3",
|
||||
"eslint-plugin-regexp": "^3.0.0",
|
||||
"eslint-plugin-vue": "^10.0.0",
|
||||
"eslint-plugin-yml": "^3.0.0",
|
||||
"eslint-snapshot-rule-tester": "^0.1.0",
|
||||
"eslint-typegen": "^2.0.0",
|
||||
"espree": "^11.0.0",
|
||||
"events": "^3.3.0",
|
||||
"globals": "^17.0.0",
|
||||
"mocha": "^11.1.0",
|
||||
"prettier": "^3.5.3",
|
||||
"semver": "^7.7.1",
|
||||
"toml-eslint-parser": "^1.0.3",
|
||||
"tsdown": "^0.19.0",
|
||||
"tsx": "^4.19.3",
|
||||
"typescript": "~5.9.0",
|
||||
"typescript-eslint": "^8.56.0",
|
||||
"vitepress": "^1.6.3",
|
||||
"vue-eslint-parser": "^10.0.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user