-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.64 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
{
"name": "rattribute.js",
"title": "Rattribute.js",
"description": "A lightweight JavaScript library for automatically changing HTML element attributes based on responsive screen sizes.",
"version": "1.3.1",
"homepage": "https://github.com/williamtroup/Rattribute.js",
"author": {
"name": "Bunoon"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamtroup/Rattribute.js"
},
"keywords": [
"typescript",
"javascript",
"html5",
"rattribute.js",
"attribute",
"html",
"responsive",
"link",
"target",
"render"
],
"bugs": {
"url": "https://github.com/williamtroup/Rattribute.js/issues"
},
"main": "dist/rattribute.js",
"types": "dist/rattribute.d.ts",
"scripts": {
"build-all-verify-and-fix": "npx eslint '**/*.ts' --fix && npm run build-all",
"build-all-verify": "npx eslint '**/*.ts' && npm run build-all",
"build-all": "npm run build && npm run build-minimized",
"build": "tsup --config tsup.build.config.ts && tsup --config tsup.build.esm.config.ts",
"build-minimized": "tsup --config tsup.build.min.config.ts",
"build-typescript": "tsup --config tsup.build.config.ts",
"build-typescript-esm": "tsup --config tsup.build.esm.config.ts",
"build-typescript-minimized": "tsup --config tsup.build.min.config.ts"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@swc/core": "^1.15.43",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"sass": "^1.101.0",
"terser": "^5.48.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
}
}