-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 968 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
{
"name": "@mysticfrog/captain-utils",
"version": "0.1.0",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup library/index.ts --format cjs,esm --dts",
"release": "tsc && pnpm run build && changeset publish",
"ci": "tsc && pnpm run build",
"test": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.6",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.8.0"
}
}