-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
53
54
55
56
57
58
{
"name": "@devstronomy/celestial",
"version": "0.5.0",
"description": "Library providing Celestial components.",
"license": "MIT",
"author": "Martin Krauskopf <[email protected]> (https://devstronomy.com/)",
"homepage": "https://devstronomy.com",
"repository": {
"type": "git",
"url": "git+https://github.com/devstronomy/celestial.git"
},
"bugs": {
"url": "https://github.com/devstronomy/celestial/issues"
},
"exports": {
".": "./dist"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"clean:dist": "run-s clean dist",
"dist": "tsc --project tsconfig.prod.json && cp src/style.css dist",
"flush-npm": "rimraf node_modules && npm install",
"lint": "eslint src/**/*.[jt]s",
"lint:fix": "eslint --fix src/**/*.[jt]s",
"prepack": "npm run clean:dist",
"prettier:check": "prettier -c src && prettier-package-json -l ./package.json",
"prettier:fix": "prettier -w src && prettier-package-json --write ./package.json",
"publish:dry": "npm publish --access public --dry-run",
"publish:npm": "npm publish --access public",
"start": "webpack serve --config webpack.dev.js",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watchAll"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@devstronomy/canvas": "0.5.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@devstronomy/dev-dependencies": "0.4.0",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"css-loader": "6.8.1",
"css-minimizer-webpack-plugin": "4.2.2",
"html-webpack-plugin": "5.5.3",
"mini-css-extract-plugin": "2.7.6",
"style-loader": "3.3.3"
},
"engines": {
"node": "^18",
"npm": "^9"
}
}