-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.22 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
{
"name": "@teamreflex/cosmo-ts",
"version": "0.0.1",
"description": "Unofficial TypeScript library for interfacing with the COSMO app API.",
"scripts": {
"dev": "tsup --watch --clean=false",
"build": "tsup",
"test": "vitest",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage"
},
"keywords": [
"kpop",
"modhaus",
"cosmo",
"tripleS",
"artms"
],
"author": "",
"license": "MIT",
"repository": "https://github.com/teamreflex/cosmo-ts",
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@vitest/coverage-v8": "^2.0.4",
"msw": "^2.3.4",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.4"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
]
}