-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.52 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
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": "moon-style",
"version": "0.0.76",
"description": "moon-style",
"main": "dist/index.js",
"source": "lib/index.ts",
"private": false,
"engines": {
"node": ">=14"
},
"type": "module",
"scripts": {
"copy-config": "cp -r ./moon.config.default.json ./dist/moon.config.default.json",
"copy-config-schema": " cp -r ./moon.config.schema.json ./dist/moon.config.schema.json",
"build": "rm -rf dist && rollup -c --exports auto && yarn build-scriptsTs && yarn copy-config && yarn copy-config-schema && node ./scripts/insertCode.js",
"prod": "yarn build && node ./scripts/publish.js && git push",
"start": "vite",
"build-scriptsTs": "yarn tsc --build scripts.tsconfig.json",
"delete-scriptsJS": "rm -rf ./scriptsJS",
"moon": "node ./dist/moon.js",
"just-test": "yarn build && node ./dist/build.js",
"test": "yarn build && start /B yarn moon && yarn start",
"purge": "node ./dist/purge.js",
"test-purge": "yarn build-scriptsTs && node ./dist/purge.js",
"postinstall": "chmod +x ./dist/moon.js && chmod +x ./dist/purge.js"
},
"bin": {
"moon": "./dist/moon.js",
"moon-purge": "./dist/purge.js"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.15",
"babel-loader": "^8.2.5",
"cssnano": "^6.0.1",
"fs": "^0.0.1-security",
"postcss": "^8.4.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"rollup": "^3.29.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^4.2.1"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"keywords": [],
"tags": [],
"dependencies": {
"chokidar-cli": "^3.0.0",
"postcss-cli": "^10.1.0",
"postcss-preset-env": "^9.1.3",
"purgecss": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Owl3CM/Moon.git"
},
"homepage": "https://github.com/Owl3CM/Moon",
"bugs": {
"url": "https://github.com/Owl3CM/Moon/issues"
}
}