forked from AngeloCore/suorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 Bytes
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": "suorm",
"version": "1.0.5",
"description": "A super simple query builder for surreal.db",
"main": "lib/index.js",
"types": "types/index.d.ts",
"author": "Angelo II",
"license": "MIT",
"scripts": {
"format": "prettier --write src/**",
"build": "tsc",
"build:check": "tsc --noEmit",
"prepublishOnly": "yarn build && yarn format",
"test:dev": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"devDependencies": {
"@types/node": "^20.2.1",
"@vitest/ui": "^0.31.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vitest": "^0.31.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngeloCore/suorm.git"
},
"bugs": {
"url": "hhttps://github.com/AngeloCore/suorm/issues"
},
"homepage": "https://github.com/AngeloCore/suorm#readme"
}