-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "activityinfo-sdk",
"version": "1.1.2",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./schema": {
"import": "./dist/schema.js",
"require": "./dist/schema.cjs",
"types": "./dist/schema.d.ts"
}
},
"scripts": {
"format": "prettier --write \"**/*.{js,ts,tsx,json}\" --config .prettierrc",
"release-patch": "./release.sh patch",
"release-minor": "./release.sh minor",
"release-major": "./release.sh major",
"build": "tsup",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@alexandreannic/ts-utils": "^2.1.20",
"@types/node": "^22.13.1",
"dotenv": "^16.4.7",
"node-fetch": "^3.3.2",
"prettier": "^3.4.2",
"zod": "^3.24.1"
}
}