-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "mgplus",
"private": false,
"version": "1.5.0",
"description": "mgplus a micro CSS library",
"homepage": "https://evodim.github.io/mgplus",
"repository": "https://github.com/mgpluscss/mgplus",
"license": "MIT",
"author": "evodim",
"type": "module",
"main": "dist/mgplus-vanilla.umd.cjs",
"module": "dist/mgplus-vanilla.js",
"types": "dist/types/mgplus.d.ts",
"style": "dist/mgplus.css",
"unpkg": "dist/mgplus-vanilla.umd.cjs",
"jsdelivr": "dist/mgplus-vanilla.umd.cjs",
"exports": {
".": {
"types": "./dist/types/mgplus.d.ts",
"import": "./dist/mgplus-vanilla.js",
"require": "./dist/mgplus-vanilla.umd.cjs",
"default": "./dist/mgplus-vanilla.umd.cjs"
},
"./css": "./dist/mgplus.css",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:demo": "vite build --outDir demo_build",
"build:lib": "vite build --config vite.lib.config.ts",
"preview": "vite preview",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint:css": "stylelint **/*.scss",
"lint:css:fix": "stylelint **/*.scss --fix",
"lint:js": "eslint src/",
"lint": "npm run lint:css && npm run lint:js",
"test": "npm run typecheck && npm run lint && npm run build:lib"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jaames/iro": "^5.5.2",
"@types/node": "^22.13.9",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"postcss": "^8.5.3",
"sass": "^1.71.1",
"stylelint": "^16.15.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.69.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-stylelint": "^6.0.0"
},
"files": [
"dist",
"readme.md",
"LICENSE"
]
}