-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "cytoplasmic",
"version": "0.8.0",
"description": "Reactive building blocks for typesafe JSX-based web applications",
"author": "Niels Poulsen",
"license": "MIT",
"repository": "nielssp/cytoplasmic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "webpack --mode=production",
"watch": "webpack watch --mode=production",
"dev": "webpack serve --config=webpack.examples.config.js",
"prepare": "npm run build",
"docs": "typedoc src/index.tsx"
},
"dependencies": {
"tsx-dom-types": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"css-loader": "^5.2.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"style-loader": "^2.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.1",
"typedoc": "^0.25.13",
"typescript": "^4.9.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.9.2"
}
}