-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "@urlpack/base62",
"version": "2.0.0",
"license": "MIT",
"homepage": "https://github.com/daangn/urlpack/tree/main/packages/base62",
"repository": {
"type": "git",
"url": "https://github.com/daangn/urlpack.git",
"directory": "packages/base62"
},
"type": "module",
"main": "./src/index.ts",
"publishConfig": {
"access": "public",
"main": "./lib/index.mjs",
"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"
}
},
"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/base-codec": "workspace:^2.0.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"nanobundle": "^2.0.0",
"tsm": "^2.3.0",
"typescript": "^5.4.3",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
}
}