-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.5 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
{
"name": "@tikui/core",
"version": "6.3.0",
"description": "Tikui core",
"main": "src/tikui.js",
"scripts": {
"build": "npm run clean & tsc",
"clean": "rimraf dist",
"component-test:start": "TIKUI_PATH='testing-tikui' node dist/tikui-core.js serve",
"component-test:build": "TIKUI_PATH='testing-tikui' node dist/tikui-core.js build",
"component-test:preview": "TIKUI_PATH='testing-tikui' node dist/tikui-core.js preview",
"component-test:cypress": "cypress run",
"component-test:cypress:open": "cypress open",
"component-test:ci": "start-server-and-test component-test:start http://localhost:3005 component-test:cypress",
"component-test:preview:ci": "start-server-and-test component-test:preview http://localhost:3005 component-test:cypress",
"component-test:open": "start-server-and-test component-test:start http://localhost:3005 component-test:cypress:open",
"component-test:preview:open": "start-server-and-test component-test:preview http://localhost:3005 component-test:cypress:open",
"test": "jest --collectCoverage --detectOpenHandles"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"tsconfig.json"
],
"keywords": [
"ui",
"ui kit",
"design system",
"pattern library"
],
"repository": "github:tikui/tikui-core",
"author": "Anthony Rey",
"license": "MIT",
"bugs": {
"url": "https://github.com/tikui/tikui-core/issues"
},
"homepage": "https://github.com/tikui/tikui-core#readme",
"dependencies": {
"@johnsoncodehk/html2pug": "1.0.0",
"reload": "3.3.0",
"commander": "13.1.0",
"concurrently": "9.1.2",
"cors": "2.8.5",
"escape-html": "1.0.3",
"express": "4.21.2",
"node-watch": "0.7.4",
"prismjs": "1.29.0",
"pug": "3.0.3",
"pug-multiple-basedirs-plugin": "0.1.5",
"recursive-copy": "2.0.14",
"rimraf": "6.0.1",
"showdown": "2.1.0",
"through2": "4.0.2"
},
"peerDependencies": {
"sass": ">=1.45.0 <2.0.0"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/escape-html": "1.0.4",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/node": "22.13.5",
"@types/pug": "2.0.10",
"@types/showdown": "2.0.6",
"@types/through2": "2.0.41",
"cypress": "13.17.0",
"jest": "29.7.0",
"sass": "1.85.1",
"start-server-and-test": "2.0.10",
"tikuidoc-tikui": "8.0.1",
"ts-jest": "29.2.6",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"bin": {
"tikui-core": "./dist/tikui-core.js"
}
}