-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.28 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.28 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
{
"name": "@drawbotics/react-ittsu",
"version": "3.0.0",
"description": "React components using ittsu styles.",
"main": "index.js",
"module": "index.mjs",
"sideEffects": false,
"files": [
"lib/",
"esm/",
"index.js",
"index.mjs",
"components.js",
"components.mjs",
"forms.js",
"forms.mjs",
"layout.js",
"layout.mjs"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./components": {
"import": "./components.mjs",
"require": "./components.js"
},
"./forms": {
"import": "./forms.mjs",
"require": "./forms.js"
},
"./layout": {
"import": "./layout.mjs",
"require": "./layout.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Drawbotics/react-ittsu.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Lorenzo Ruiz <lars.bs@hotmail.com>",
"license": "UNLICENSED",
"scripts": {
"clean": "rimraf lib/ esm/",
"lint": "eslint --format eslint-formatter-pretty src/",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir lib/",
"build:esm": "BABEL_ENV=esm babel src --out-dir esm/",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build-watch": "npm run clean && npm run build:cjs -- --watch",
"storybook": "storybook dev -p 9001",
"build-storybook": "storybook build -o docs",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">= 18.0.0",
"react-dom": ">= 18.0.0"
},
"dependencies": {
"classnames": "^2.5.1",
"rc-slider": "^11.1.9",
"react-textarea-autosize": "^8.5.9"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-do-expressions": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/react-webpack5": "^10.2.19",
"eslint": "^9.39.4",
"eslint-formatter-pretty": "^7.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "10.2.19",
"globals": "^17.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.1.3",
"storybook": "^10.2.19"
}
}