-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.9 KB
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
62
63
64
65
66
67
68
69
{
"name": "@shizuoka-its/core",
"version": "3.0.1",
"description": "ITS core library",
"keywords": [],
"license": "ISC",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/su-its/core.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"prepare": "npm run build",
"test": "vp test",
"test:watch": "vp test watch",
"typecheck": "tsc --noEmit",
"check": "vp check",
"lint": "vp lint",
"lint:ci": "vp lint",
"format": "vp fmt",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"version:patch": "npm version patch && npm run publish:latest",
"version:minor": "npm version minor && npm run publish:latest",
"version:major": "npm version major && npm run publish:latest",
"version:alpha": "npm version prerelease --preid=alpha && npm run publish:alpha",
"version:beta": "npm version prerelease --preid=beta && npm run publish:beta",
"version:rc": "npm version prerelease --preid=rc && npm run publish:rc",
"publish:latest": "npm publish --tag latest",
"publish:alpha": "npm publish --tag alpha",
"publish:beta": "npm publish --tag beta",
"publish:rc": "npm publish --tag rc"
},
"dependencies": {
"drizzle-orm": "^0.45.1",
"postgres": "^3.4.8",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"drizzle-kit": "^0.31.10",
"typescript": "^6.0.2",
"vite-plus": "^0.1.13"
},
"overrides": {
"esbuild": "^0.27.4"
},
"packageManager": "npm@11.12.0"
}