-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "layout-grid-helper",
"type": "module",
"version": "2.0.1",
"description": "Сетка для верстки",
"author": "TakNePoidet",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"jsdelivr": "./dist/index.iife.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/TakNePoidet/layout-grid-helper/issues"
},
"homepage": "https://github.com/TakNePoidet/layout-grid-helper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TakNePoidet/layout-grid-helper.git"
},
"devDependencies": {
"@taknepoidet-config/prettier": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^3.0.3",
"terser": "^5.19.4",
"typescript": "*",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"lint": "eslint --fix ./src",
"prettier": "prettier --ignore-unknown --write .",
"beautifier": "npm run lint && npm run prettier",
"prepublishOnly": "npm run build"
},
"pre-commit": [
"beautifier"
],
"packageManager": "[email protected]",
"dependencies": {
"defu": "^6.1.2"
}
}