-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.05 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": "linearid",
"license": "MIT",
"version": "0.2.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AStarStartup/LinearId.git"
},
"homepage": "https://github.com/AStarStartup/LinearId",
"keywords": [
"shard",
"sharding",
"database sharding",
"unique id",
"uid",
"uuid",
"ulid",
"naming",
"name server",
"ipv6",
"mac address"
],
"scripts": {
"build": "tsup ./Source/index.ts --format cjs, esm --dts",
"test": "jest"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}