-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "generate-combinations",
"version": "1.0.1",
"description": "Generate all combinations of an object from a description, with type safety",
"scripts": {
"test": "vitest",
"typecheck": "tsc",
"test:run": "vitest --run",
"format": "prettier --write '**/*.ts' '**/*.json'",
"build": "vite build",
"prepublishOnly": "pnpm typecheck && pnpm test:run && pnpm format",
"prepare": "pnpm build"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaec/generate-combinations.git"
},
"author": "isaec",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaec/generate-combinations/issues"
},
"homepage": "https://github.com/isaec/generate-combinations#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.2"
}
}