-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 906 Bytes
/
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
{
"name": "@typoas/runtime",
"version": "4.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/embraser01/typoas",
"directory": "packages/typoas-runtime"
},
"main": "./src/index.ts",
"module": "./lib/esm/index.js",
"sideEffects": false,
"scripts": {
"prepack": "tsc --module esnext --outDir ./lib/esm && tsc --outDir ./lib/cjs",
"test:jest": "jest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"query-string": "^7.1.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "~5.5.4"
},
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts",
"!/lib/**/__tests__/*"
],
"publishConfig": {
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
}
}