-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "vite-plugin-turbosnap",
"version": "1.0.3",
"description": "Enables the use of Chromatic Turbosnap in vite storybook projects",
"keywords": [
"vite-plugin",
"chromatic",
"turbosnap",
"storybook",
"vite",
"snapshot"
],
"author": "Ian VanSchooten <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/IanVS/vite-plugin-turbosnap#readme",
"bugs": {
"url": "https://github.com/IanVS/vite-plugin-turbosnap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IanVS/vite-plugin-turbosnap.git"
},
"files": [
"dist",
"*.d.ts",
"LICENSE"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && unbuild",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^17.0.19",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"unbuild": "^0.6.9",
"vite": "^2.8.4"
}
}