-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "@liquidlight/vite-framework",
"version": "0.0.0",
"description": "Liquid Light Vite Framework",
"type": "module",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist",
"dist/*",
"dist/**/*"
],
"homepage": "https://github.com/liquidlight/vite-framework#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/liquidlight/vite-framework.git"
},
"bugs": {
"url": "https://github.com/liquidlight/vite-framework/issues"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc -p ./tsconfig.esm.json && tsc -p ./tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"prepack": "npm run build",
"prepare": "npm run build",
"lint": "eslint ."
},
"author": "Mike Street",
"license": "ISC",
"dependencies": {
"@spiriit/vite-plugin-svg-spritemap": "^5.0.0",
"autoprefixer": "^10.4.22",
"cssnano": "^7.1.2",
"postcss-custom-media": "^11.0.6",
"postcss-sort-media-queries": "^5.2.0",
"sass": "^1.94.2",
"vite": "^7.2.7",
"vite-plugin-typo3": "^2.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.4",
"eslint": "^9.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
}
}