-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "bordex",
"version": "0.2.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --write .",
"prepare": "husky",
"build": "parcel build src/index.ts --no-source-maps --target main && npx dts-bundle-generator -o dist/index.d.ts src/index.ts",
"dev": "parcel src/index.ts --open",
"compile": "parcel build src/index.ts --no-source-maps --target main"
},
"targets": {
"main": {
"outputFormat": "esmodule",
"distDir": "./dist",
"engines": {
"browsers": "> 0.25%, not dead"
}
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"author": "shaian",
"keywords": [
"frontend",
"border",
"border-style",
"custom-borders",
"css-borders",
"library"
],
"description": "A JavaScript library for generating stylish pre-styled borders for HTML elements.",
"homepage": "https://bordex.netlify.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/zshaian/bordex.git"
},
"bugs": {
"url": "https://github.com/zshaian/bordex/issues"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@tsconfig/recommended": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0"
}
}