Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
56 lines
1.3 KiB
JSON
Executable File
56 lines
1.3 KiB
JSON
Executable File
{
|
|
"name": "linguist-languages",
|
|
"version": "8.2.0",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"description": "Linguist languages data",
|
|
"keywords": [
|
|
"data",
|
|
"json",
|
|
"language",
|
|
"linguist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.mjs",
|
|
"require": "./lib/index.js"
|
|
},
|
|
"./data/*": {
|
|
"import": "./data/*.mjs",
|
|
"require": "./data/*.js"
|
|
}
|
|
},
|
|
"repository": "https://github.com/ikatyang-collab/linguist-languages",
|
|
"homepage": "https://github.com/ikatyang-collab/linguist-languages#readme",
|
|
"author": {
|
|
"name": "Ika",
|
|
"email": "ikatyang@gmail.com",
|
|
"url": "https://github.com/ikatyang"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "24.2.0",
|
|
"@vitest/coverage-v8": "3.2.4",
|
|
"camelcase": "8.0.0",
|
|
"jest-snapshot-serializer-raw": "2.0.0",
|
|
"node-style-text": "^1.0.0",
|
|
"outdent": "0.8.0",
|
|
"prettier": "3.6.2",
|
|
"typescript": "5.9.2",
|
|
"vite": "7.1.5",
|
|
"vitest": "3.2.4",
|
|
"yaml": "2.8.1"
|
|
},
|
|
"files": [
|
|
"/lib/**/*",
|
|
"/data/**/*",
|
|
"/ThirdPartyNoticeText.txt"
|
|
],
|
|
"scripts": {
|
|
"lint": "prettier --check .",
|
|
"fix": "prettier --write .",
|
|
"check": "tsc",
|
|
"test": "vitest",
|
|
"build": "node ./scripts/build.mjs"
|
|
}
|
|
} |