-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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": "fixturify-project",
"version": "7.1.3",
"repository": "git@github.com:stefanpenner/node-fixturify-project",
"license": "MIT",
"author": "Stefan Penner <stefan.penner@gmail.com>",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node src/index.ts --sourcemap --format cjs,esm --dts --clean",
"docs:generate": "readme-api-generator src/index.ts --ts",
"lint": "pnpm prettier --check **/*.ts",
"prepare": "pnpm build",
"prepublishOnly": "pnpm build",
"test": "vitest run"
},
"dependencies": {
"@embroider/shared-internals": "^2.6.0",
"@pnpm/find-workspace-dir": "^7.0.0",
"@pnpm/fs.packlist": "^2.0.0",
"@pnpm/logger": "^5.0.0",
"@pnpm/workspace.find-packages": "^2.0.3",
"bin-links": "^3.0.0",
"deepmerge": "^4.2.2",
"fixturify": "^3.0.0",
"fs-extra": "^10.0.0",
"resolve-package-path": "^4.0.3",
"tmp": "^0.0.33",
"type-fest": "^4.1.0",
"walk-sync": "^3.0.0"
},
"devDependencies": {
"@scalvert/readme-api-generator": "^0.2.3",
"@types/chai": "^4.2.18",
"@types/fs-extra": "^9.0.11",
"@types/node": "^16.9.1",
"@types/tmp": "^0.0.33",
"chai": "^4.3.4",
"prettier": "^2.3.0",
"release-plan": "^0.9.0",
"tsup": "^5.12.5",
"typescript": "^5.1.6",
"vite": "^5.2.7",
"vitest": "^0.9.3"
},
"engines": {
"node": ">= 14.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}