-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "@urlpack/qrjson",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/daangn/urlpack/tree/main/packages/qrjson",
"repository": {
"type": "git",
"url": "https://github.com/daangn/urlpack.git",
"directory": "packages/qrjson"
},
"source": "./src/index.ts",
"type": "module",
"main": "./src/index.ts",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"main": "./lib/index.mjs"
},
"files": [
"src",
"lib"
],
"scripts": {
"prepack": "yarn build",
"build": "nanobundle build",
"test": "uvu -r tsm",
"test:watch": "yarn test || true && watchlist src tests -- yarn test"
},
"dependencies": {
"@urlpack/base10": "workspace:^1.0.0",
"@urlpack/msgpack": "workspace:^2.0.0"
},
"devDependencies": {
"@urlpack/base-codec": "workspace:^2.0.0",
"nanobundle": "^2.0.0",
"tsm": "^2.3.0",
"typescript": "^5.4.3",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
}
}