-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "@dpaskhin/unique",
"version": "1.0.0",
"description": "Ensures unique values by rejecting duplicates.",
"keywords": [
"uniqueness",
"deduplication",
"retry",
"filtering",
"generation"
],
"files": [
"lib"
],
"main": "./lib/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./lib/index.js",
"default": "./lib/index.cjs"
}
},
"types": "./lib/index.d.ts",
"sideEffects": false,
"homepage": "https://github.com/dPaskhin/unique",
"bugs": {
"url": "https://github.com/dPaskhin/unique/issues"
},
"author": "Dmitrii Paskhin <d.pasxin@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/dPaskhin/unique.git"
},
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsup",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test-coverage && npm run type-test",
"format": "prettier --write .",
"test": "vitest run",
"test-coverage": "vitest run --coverage",
"type-test": "tsd",
"lint": "tsc",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.8",
"@faker-js/faker": "^9.0.3",
"@vitest/coverage-v8": "^2.1.1",
"prettier": "^3.3.3",
"terser": "^5.34.1",
"tsd": "^0.31.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"tsd": {
"directory": "./src/test/types"
}
}