-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.73 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
{
"name": "@serenity-is/sleekgrid",
"version": "1.9.4",
"description": "A modern Data Grid / Spreadsheet component",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*.ts",
"dist/**/*.css",
"dist/**/*.js",
"dist/**/*.map",
"lib/**/*.js",
"css/**/*.css",
"src/**/*.ts",
"src/**/*.css",
"tsconfig.json"
],
"scripts": {
"build": "node build/build",
"build:full": "node build/build --full",
"doc": "typedoc --plugin typedoc-plugin-markdown --exclude **/lib/**/* --excludePrivate --readme none --githubPages false --hidePageHeader --sourceLinkTemplate https://github.com/serenity-is/sleekgrid/blob/master/{path}#L{line} --readme none --out /serenity-is/SerenityIs/SerenityIs.Web/Docs/api/js/sleekgrid --json ./out/typedoc.json src",
"dts": "npx -yes dts-bundle-generator -o dist/index.d.ts src/index.ts --project=./tsconfig.json --no-banner",
"prepublishOnly": "pnpm build:full && pnpm run test --coverage && pnpm dts",
"test": "pnpm build && vitest run",
"tsc": "tsc",
"www": "pnpm build:full && cd docs && jekyll serve --livereload --config _config.yml,_config_local.yml"
},
"keywords": [
"grid",
"datagrid",
"datatable",
"SleekGrid",
"SlickGrid",
"spreadsheet",
"table"
],
"author": "Volkan Ceylan, Furkan Evran, Victor Tomaili (https://serenity.is)",
"repository": "serenity-is/sleekgrid",
"license": "MIT",
"bugs": "https://github.com/serenity-is/sleekGrid/issues",
"homepage": "https://github.com/serenity-is/sleekGrid#readme"
}