-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sherpa-core",
"author": "Sellers Industries",
"version": "0.0.0",
"description": "Module and Reusable Microservice Platform. Build and modularize custom API endpoints, inspired by NextJS APIs. Export to Vercel and ExpressJS.",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.js"
},
"./internal": {
"import": "./dist/src/internal/index.js",
"types": "./dist/src/internal/index.d.js"
},
"./server-local": {
"import": "./dist/src/server-local/index.js",
"types": "./dist/src/server-local/index.d.js"
}
},
"type": "module",
"bin": {
"sherpa": "./dist/src/cli/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc --build --force ./toolchain/tsconfig.json",
"lint": "eslint . --ext .ts -c ./toolchain/.eslintrc.cjs",
"test": "npm run test-unit && npm run test-endpoints",
"test-unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js -c ./toolchain/jest.config.ts",
"test-endpoints": "npm run build && node ./dist/tests/endpoints/index.test.js"
},
"devDependencies": {
"@types/checksum": "^0.1.35",
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
},
"license": "ISC",
"dependencies": {
"@offen/esbuild-plugin-jsonschema": "^1.1.0",
"@types/node": "^20.12.4",
"ajv": "^8.13.0",
"checksum": "^1.0.0",
"chokidar": "^3.6.0",
"colorette": "^2.0.20",
"commander": "^11.1.0",
"es-module-lexer": "^1.5.0",
"esbuild": "^0.19.10",
"parse-imports": "^1.1.2",
"stacktracey": "^2.1.8",
"typescript": "^5.3.3"
}
}