forked from oxidation-lab/oxy-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "@oxidation-lab/oxy-form",
"version": "2.0.0",
"description": "A form rendering package",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test:dev": "vite",
"postbuild": "cp src/global.css dist/src/global.css"
},
"author": "Oxidation Lab",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/oxidation-lab/oxy-form"
},
"dependencies": {
"styled-components": "^6.1.13",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite-plugin-react": "^4.0.1"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.0.1"
},
"files": ["dist/**/*", "src/**/*", "README.md"],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./*": "./dist/*",
"./styles": "./dist/assets/oxy-form-lib.[hash].css"
}
}