-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 838 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
37
38
39
40
41
42
{
"name": "near-orm",
"type": "module",
"description": "A simple ORM for IndexedDB",
"version": "0.4.1",
"main": "./orm.js",
"module": "./orm.js",
"types": "./orm.d.ts",
"scripts": {
"build": "rimraf ./orm.js ./orm.d.ts && tsc",
"test": "vitest run --coverage",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShafSpecs/near-orm.git",
"directory": "packages/core"
},
"license": "MIT",
"author": {
"name": "Abdur-Rahman Fashola",
"url": "https://github.com/ShafSpecs"
},
"files": [
"orm.js",
"orm.d.ts",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"indexeddb",
"orm",
"nearorm",
"database",
"db",
"indexeddb-orm"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false
}