comins-table 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "comins-table",
3
+ "version": "0.1.1",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/kim1124/comins-table.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/kim1124/comins-table/issues"
12
+ },
13
+ "homepage": "https://github.com/kim1124/comins-table#readme",
14
+ "scripts": {
15
+ "build": "vite build && tsc -p tsconfig.build.json",
16
+ "dev": "vite --config vite.example.config.ts",
17
+ "lint": "tsc --noEmit",
18
+ "test": "vitest",
19
+ "test:consumer": "node scripts/consumer-smoke.mjs",
20
+ "test:e2e": "env -u NO_COLOR playwright test --config=playwright.config.ts --grep-invert @perf",
21
+ "test:perf": "env -u NO_COLOR playwright test --config=playwright.config.ts --grep @perf",
22
+ "test:run": "vitest run",
23
+ "verify": "npm run lint && npm run test:run && npm run build",
24
+ "verify:e2e": "npm run test:e2e",
25
+ "verify:full": "npm run verify && npm run verify:e2e"
26
+ },
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.js"
31
+ },
32
+ "./clipboard": {
33
+ "types": "./dist/clipboard.d.ts",
34
+ "import": "./dist/clipboard.js"
35
+ },
36
+ "./core": {
37
+ "types": "./dist/core.d.ts",
38
+ "import": "./dist/core.js"
39
+ },
40
+ "./selection": {
41
+ "types": "./dist/selection.d.ts",
42
+ "import": "./dist/selection.js"
43
+ },
44
+ "./styles.css": "./styles.css"
45
+ },
46
+ "files": [
47
+ "dist",
48
+ "README.md",
49
+ "styles.css",
50
+ "CHANGELOG.md"
51
+ ],
52
+ "sideEffects": [
53
+ "./styles.css"
54
+ ],
55
+ "peerDependencies": {
56
+ "react": ">=18.0.0 <20.0.0",
57
+ "react-dom": ">=18.0.0 <20.0.0"
58
+ },
59
+ "devDependencies": {
60
+ "@playwright/test": "^1.61.1",
61
+ "@tailwindcss/postcss": "^4.3.2",
62
+ "@types/react": "^19.2.17",
63
+ "@types/react-dom": "^19.2.3",
64
+ "@vitejs/plugin-react": "^6.0.3",
65
+ "jsdom": "^29.1.1",
66
+ "prism-react-renderer": "^2.4.1",
67
+ "react-router": "^7.17.0",
68
+ "typescript": "^6.0.3",
69
+ "vite": "^8.1.4",
70
+ "vitest": "^4.1.10"
71
+ },
72
+ "dependencies": {
73
+ "lucide-react": "^1.17.0"
74
+ }
75
+ }