Files
pnpm/deps/graph-sequencer/package.json

43 lines
1.0 KiB
JSON

{
"name": "@pnpm/deps.graph-sequencer",
"version": "1000.0.0",
"description": "Sort items in a graph using a topological sort",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/deps/graph-sequencer",
"keywords": [
"pnpm10",
"pnpm",
"graph"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/deps/graph-sequencer#readme",
"funding": "https://opencollective.com/pnpm",
"devDependencies": {
"@pnpm/deps.graph-sequencer": "workspace:*"
},
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}