-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.23 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
{
"name": "@ningze/paraore-ui",
"version": "2.0.3",
"description": "A Minecraft-inspired CSS component library",
"main": "dist/paraore-ui.css",
"style": "dist/paraore-ui.css",
"sass": "sass/paraore-ui.scss",
"module": "dist/js/paraore-ui.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"sass",
"fonts",
"images"
],
"scripts": {
"build": "npm run build:css && npm run build:js && npm run build:types",
"build:css": "sass sass/paraore-ui.scss dist/paraore-ui.css --style compressed --no-source-map",
"build:js": "node esbuild.config.js",
"build:types": "tsc",
"build:dev": "npm run dev-css && npm run dev-js",
"dev-css": "sass sass/paraore-ui.scss dist/paraore-ui.css --style expanded --source-map",
"dev-js": "node esbuild.config.js --dev",
"watch": "sass sass/paraore-ui.scss dist/paraore-ui.css --style expanded --source-map --watch",
"clean": "rm -rf dist/*.css dist/*.map dist/js dist/types",
"lint": "eslint typescript/**/*.ts",
"lint:fix": "eslint typescript/**/*.ts --fix",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NingZeStudio/ParaOre-UI.git"
},
"keywords": [
"oreui",
"minecraft",
"ui",
"css",
"sass",
"component",
"webui",
"ningze"
],
"author": {
"name": "JanePHPDev",
"organization": "NingZeStudio"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NingZeStudio/ParaOre-UI/issue"
},
"homepage": "https://github.com/NingZeStudio/ParaOre-UI",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"sass": "^1.69.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}