-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.22 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
{
"name": "dialectical-wheel",
"version": "1.0.0",
"type": "module",
"description": "React components for interactive dialectical wheel visualization",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"rollup.config.js",
"tsconfig.json",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"dialectical",
"wheel",
"visualization",
"dialectics",
"philosophy",
"thesis",
"antithesis",
"component"
],
"author": "Justin Tan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dialexity/dialectical-wheel.git"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"@babel/preset-typescript": "^7.27.1",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@storybook/addon-docs": "^9.1.7",
"@storybook/addon-mcp": "^0.6.0",
"@storybook/addon-onboarding": "^9.1.7",
"@storybook/react-vite": "^9.1.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-storybook": "^9.1.7",
"jest": "^29.0.0",
"rollup": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^9.1.7",
"tslib": "^2.8.1",
"typescript": "^5.0.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}