-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.2 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@paralleldrive/cuid2",
"private": false,
"type": "module",
"types": "index.d.ts",
"bin": {
"cuid2": "./bin/cuid2.js"
},
"files": [
"src/index.js",
"index.js",
"index.d.ts",
"bin/cuid2.js"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix . --ignore-pattern '*.d.ts'",
"typescript": "npx -p typescript tsc --esModuleInterop --rootDir . src/index-test.js --noEmit --allowJs --checkJs --target es2020 --moduleResolution node && echo 'TypeScript Complete.'",
"test": "NODE_ENV=test node src/index-test.js && NODE_ENV=test node src/bin-test.js",
"test-color": "NODE_ENV=test node src/index-test.js && NODE_ENV=test node src/bin-test.js",
"collision-test": "NODE_ENV=test node src/collision-test.js",
"histogram": "NODE_ENV=test node src/histogram.js",
"watch": "watch 'npm run -s test && npm run -s lint && npm run -s typescript' src",
"update": "updtr",
"release": "node release.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/cuid2.git"
},
"keywords": [
"uuid",
"guid",
"cuid",
"unique",
"id",
"ids",
"identifier",
"identifiers"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/cuid2/issues"
},
"homepage": "https://github.com/ericelliott/cuid2#readme",
"devDependencies": {
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"aidd": "^2.5.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.0.11",
"next": "^16.1.4",
"prettier": "^3.8.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"release-it": "^19.2.4",
"riteway": "^9.0.0",
"updtr": "^4.0.0",
"watch": "^0.13.0"
},
"dependencies": {
"@noble/hashes": "^2.0.1",
"bignumber.js": "^9.3.1",
"error-causes": "^3.0.2"
},
"version": "3.3.0"
}