-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "near-orm",
"type": "module",
"description": "A simple ORM for IndexedDB",
"version": "0.3.0",
"main": "./orm.js",
"module": "./orm.js",
"types": "./orm.d.ts",
"scripts": {
"build": "rimraf ./orm.js ./orm.d.ts && tsc && node ./minify.js",
"prepublishOnly": "npm run build",
"test": "vitest run --coverage",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShafSpecs/near-orm.git"
},
"license": "MIT",
"author": {
"name": "Abdur-Rahman Fashola",
"url": "https://github.com/ShafSpecs"
},
"files": [
"orm.js",
"orm.d.ts",
"README.md"
],
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^2.1.2",
"fake-indexeddb": "^6.0.0",
"pkg-pr-new": "^0.0.29",
"rimraf": "^6.0.1",
"terser": "^5.34.1",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"keywords": [
"indexeddb",
"orm",
"nearorm",
"database",
"db",
"indexeddb-orm"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false
}