-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "capytable",
"version": "0.3.0",
"description": "JS library for making HTML tables super awesome",
"homepage": "https://github.com/cadamsmith/capytable",
"bugs": {
"url": "https://github.com/cadamsmith/capytable/issues"
},
"author": "cadamsmith <cadamsmith.dev@gmail.com> (https://cadamsmith.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/cadamsmith/capytable.git"
},
"files": [
"dist",
"src"
],
"type": "module",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.8",
"cpy-cli": "^5.0.0",
"esbuild-plugin-umd-wrapper": "^3.0.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"scripts": {
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"build": "tsup",
"release": "npm run build && changeset publish",
"format": "prettier --write 'src/**/*.{ts,css}'",
"check-format": "prettier --check 'src/**/*.{ts,css}'",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"prepublishOnly": "npm run ci",
"local-release": "npm run ci && changeset version && changeset publish",
"lint": "tsc"
},
"main": "dist/capytable.min.js",
"types": "dist/capytable.d.ts",
"keywords": [
"table",
"capytable",
"filter",
"sort",
"pagination"
]
}