-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@kripod/uuidv7",
"version": "0.3.4",
"description": "UUIDv7 generator with millisecond precision",
"keywords": [
"id-generator",
"k-sortable",
"collision-resistance"
],
"homepage": "https://github.com/kripod/uuidv7#readme",
"bugs": "https://github.com/kripod/uuidv7/issues",
"repository": "kripod/uuidv7",
"license": "MIT",
"author": "Kristóf Poduszló <[email protected]>",
"sideEffects": false,
"exports": {
"node": {
"types": "./dist/node.d.mts",
"import": "./dist/node.mjs",
"require": "./dist/node.js"
},
"default": {
"types": "./dist/default.d.mts",
"import": "./dist/default.mjs",
"require": "./dist/default.js"
}
},
"main": "./dist/node.js",
"module": "./dist/default.mjs",
"types": "./dist/default.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup --config --configPlugin rollup-plugin-ts",
"clean": "git clean --interactive -dx --exclude node_modules/ --exclude .husky/",
"fix": "npm run fix:prettier",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "npm run lint:typescript && npm run lint:prettier",
"lint:prettier": "prettier --check --ignore-path .gitignore .",
"lint:typescript": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@tsconfig/strictest": "^1.0.1",
"@types/node": "^18.0.0",
"husky": "^8.0.1",
"nano-staged": "^0.8.0",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
},
"nano-staged": {
"*": "prettier --write --ignore-unknown"
}
}