-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.08 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "tsnapi",
"type": "module",
"version": "1.5.0",
"packageManager": "pnpm@11.25.0",
"description": "Library public API snapshot testing for runtime exports and type declarations.",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/tsnapi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/tsnapi.git"
},
"bugs": "https://github.com/antfu/tsnapi/issues",
"keywords": [
"api",
"snapshot",
"typescript",
"dts",
"testing",
"breaking-changes"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./vitest": "./dist/vitest.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"tsnapi": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown && vite build --config app/vite.config.ts",
"build:lib": "tsdown",
"build:ui": "vite build --config app/vite.config.ts",
"dev": "tsdown --watch",
"dev:ui": "vite --config app/vite.config.ts",
"storybook": "storybook dev -p 6006",
"play": "pnpm run dev:ui",
"build:storybook": "storybook build",
"lint": "eslint",
"prepack": "nr build",
"release": "bumpp package.json packages/inspector-assets/package.json",
"start": "tsx src/cli.ts",
"test": "vitest",
"typecheck": "tsc",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"vitest": ">=4.0.0"
},
"peerDependenciesMeta": {
"vitest": {
"optional": true
}
},
"dependencies": {
"@devframes/service-shiki": "^0.9.8",
"@vitest/utils": "^4.1.11",
"cac": "^7.0.0",
"devframe": "^0.9.8",
"magic-string": "^1.2.3",
"oxc-parser": "^0.147.0",
"tinyglobby": "^0.2.17"
},
"devDependencies": {
"@antfu/design": "^0.4.0",
"@antfu/eslint-config": "^9.3.0",
"@antfu/ni": "^30.5.0",
"@antfu/utils": "^9.3.0",
"@devframes/vite": "^0.9.7",
"@iconify-json/ph": "^1.2.2",
"@oxc-project/types": "^0.147.0",
"@storybook/vue3-vite": "^10.5.10",
"@types/d3-hierarchy": "^3.1.7",
"@types/d3-shape": "^3.2.0",
"@types/node": "^26.4.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vueuse/core": "^14.4.0",
"bumpp": "^12.2.2",
"colorjs.io": "^0.7.1",
"d3-hierarchy": "^3.1.2",
"d3-shape": "^3.2.0",
"diff": "^9.0.0",
"eslint": "^10.9.1",
"floating-vue": "^5.2.2",
"lint-staged": "^17.4.1",
"reka-ui": "^2.10.4",
"rolldown": "^1.2.6",
"simple-git-hooks": "^2.14.0",
"storybook": "^10.5.10",
"tsdown": "^0.22.14",
"tsdown-stale-guard": "^0.1.3",
"tsnapi-inspector-assets": "file:./packages/inspector-assets",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"unocss": "^66.8.1",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"vue": "^3.5.42"
},
"simple-git-hooks": {
"pre-commit": "pnpx lint-staged && pnpm run build && pnpm run test"
},
"lint-staged": {
"*": "eslint --fix"
}
}