-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.87 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@carry0987/paginator",
"version": "2.2.43",
"description": "An advanced pagination library",
"type": "module",
"main": "dist/paginator.min.js",
"module": "dist/paginator.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"umd": "./dist/paginator.min.js",
"import": "./dist/paginator.esm.js",
"types": "./dist/index.d.ts"
},
"./l10n": {
"umd": "./l10n/dist/l10n.min.js",
"import": "./l10n/dist/l10n.esm.js",
"types": "./l10n/dist/index.d.ts"
},
"./plugins/list": {
"umd": "./plugins/list/dist/list.min.js",
"import": "./plugins/list/dist/list.esm.js",
"types": "./plugins/list/dist/index.d.ts"
},
"./plugins/table": {
"umd": "./plugins/table/dist/table.min.js",
"import": "./plugins/table/dist/table.esm.js",
"types": "./plugins/table/dist/index.d.ts"
},
"./theme/paginator.min.css": "./dist/theme/paginator.min.css"
},
"scripts": {
"install:plugins": "find ./plugins ! -path '*/node_modules/*' ! -path './package.json' -name 'package.json' -execdir pnpm up -S \\;",
"clear:dist": "rm -rvf dist/*",
"clear:plugins": "rm -rvf plugins/*/dist/*",
"clear": "find . -path '*/node_modules' -type d -prune -exec rm -rf '{}' +",
"lint": "prettier --write \"src/**/*.{ts,tsx,scss}\" \"test/**/*.{ts,tsx}\" \"l10n/**/*.ts\" \"plugins/**/*.{ts,tsx,scss}\"",
"start": "rollup --config rollup.config.ts --configPlugin typescript",
"build": "rollup --config rollup.config.ts --configPlugin typescript --environment BUILD:production",
"test": "vitest run",
"test:watch": "vitest"
},
"files": [
"dist/*",
"dist/theme/*",
"l10n/dist",
"plugins/!(node_modules)/dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/carry0987/Paginator-JS.git"
},
"keywords": [
"paginator"
],
"author": "carry0987",
"license": "MIT",
"bugs": {
"url": "https://github.com/carry0987/Paginator-JS/issues"
},
"homepage": "https://github.com/carry0987/Paginator-JS#readme",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
},
"devDependencies": {
"@carry0987/event-emitter": "^1.4.9",
"@carry0987/pipeline": "^1.3.12",
"@carry0987/state-manager": "^1.0.0",
"@carry0987/utils": "^3.8.5",
"@preact/signals": "^2.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/preact": "^3.2.4",
"@types/node": "^22.13.9",
"happy-dom": "^17.4.0",
"preact": "^10.26.4",
"prettier": "^3.5.3",
"rollup": "^4.35.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"sass": "^1.85.1",
"tslib": "^2.8.1",
"vitest": "^3.0.8"
}
}