-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 946 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 946 Bytes
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
{
"name": "HTMLTableKit",
"version": "1.0.0",
"description": "A TypeScript library for managing HTML tables",
"main": "dist/HTMLTableKit.js",
"types": "dist/HTMLTableKit.d.ts",
"scripts": {
"build": "tsc",
"build:standalone": "node build-browser.js",
"build:minify": "node build-minified.js",
"build:all": "npm run build && npm run build:standalone && npm run build:minify",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build:all",
"serve": "npx http-server -p 8080",
"demo": "npm run build:all && npm run serve"
},
"keywords": [
"html",
"table",
"typescript",
"dom",
"manipulation"
],
"author": "Lareira Digital Developers <developers@lareira.digital>",
"license": "GPLv3",
"devDependencies": {
"@types/node": "^24.1.0",
"terser": "^5.43.1",
"typescript": "^5.9.2"
},
"files": [
"dist"
]
}