-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "ascii-3d-renderer.js",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Sunhyoup Lee",
"email": "kciter@naver.com"
},
"repository": {
"url": "git+https://github.com/kciter/ascii-3d-renderer.js.git",
"type": "git"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"build": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_0350050c121f9b4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/html": "^7.6.17",
"@storybook/html-vite": "^7.6.17",
"@storybook/test": "^7.6.17",
"chromatic": "^11.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.17",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3"
},
"bugs": {
"url": "https://github.com/kciter/ascii-3d-renderer.js/issues"
},
"homepage": "https://github.com/kciter/ascii-3d-renderer.js#readme"
}