-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "json-referencable",
"type": "module",
"version": "0.0.4",
"packageManager": "pnpm@7.9.5",
"description": "Keep references in JSON.",
"author": "mys1024",
"license": "MIT",
"homepage": "https://github.com/mys1024/json-referencable#readme",
"repository": {
"type": "git",
"url": "https://github.com/mys1024/json-referencable.git"
},
"bugs": {
"url": "https://github.com/mys1024/json-referencable/issues"
},
"keywords": [
"JSON",
"object",
"array",
"ref",
"reference",
"referencable",
"referencify"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "vitest",
"test:cover": "vitest --coverage",
"release": "pnpm test run && pnpm build && pnpm publish"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.23.4",
"unbuild": "^0.8.11",
"vitest": "^0.23.4"
}
}