@asymmetric-effort/specifyjs 0.0.6

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.
Files changed (40) hide show
  1. package/LICENSE +21 -0
  2. package/dist/specifyjs-client.cjs.js +2 -0
  3. package/dist/specifyjs-client.cjs.js.map +1 -0
  4. package/dist/specifyjs-client.d.ts +159 -0
  5. package/dist/specifyjs-client.esm.js +2 -0
  6. package/dist/specifyjs-client.esm.js.map +1 -0
  7. package/dist/specifyjs-components.cjs.js +2 -0
  8. package/dist/specifyjs-components.cjs.js.map +1 -0
  9. package/dist/specifyjs-components.d.ts +2094 -0
  10. package/dist/specifyjs-components.esm.js +2 -0
  11. package/dist/specifyjs-components.esm.js.map +1 -0
  12. package/dist/specifyjs-dom.cjs.js +2 -0
  13. package/dist/specifyjs-dom.cjs.js.map +1 -0
  14. package/dist/specifyjs-dom.d.ts +103 -0
  15. package/dist/specifyjs-dom.esm.js +2 -0
  16. package/dist/specifyjs-dom.esm.js.map +1 -0
  17. package/dist/specifyjs-jsx-dev-runtime.cjs.js +2 -0
  18. package/dist/specifyjs-jsx-dev-runtime.cjs.js.map +1 -0
  19. package/dist/specifyjs-jsx-dev-runtime.esm.js +2 -0
  20. package/dist/specifyjs-jsx-dev-runtime.esm.js.map +1 -0
  21. package/dist/specifyjs-jsx-runtime.cjs.js +2 -0
  22. package/dist/specifyjs-jsx-runtime.cjs.js.map +1 -0
  23. package/dist/specifyjs-jsx-runtime.esm.js +2 -0
  24. package/dist/specifyjs-jsx-runtime.esm.js.map +1 -0
  25. package/dist/specifyjs-server.cjs.js +2 -0
  26. package/dist/specifyjs-server.cjs.js.map +1 -0
  27. package/dist/specifyjs-server.d.ts +132 -0
  28. package/dist/specifyjs-server.esm.js +2 -0
  29. package/dist/specifyjs-server.esm.js.map +1 -0
  30. package/dist/specifyjs-telemetry.cjs.js +2 -0
  31. package/dist/specifyjs-telemetry.cjs.js.map +1 -0
  32. package/dist/specifyjs-telemetry.d.ts +165 -0
  33. package/dist/specifyjs-telemetry.esm.js +2 -0
  34. package/dist/specifyjs-telemetry.esm.js.map +1 -0
  35. package/dist/specifyjs.cjs.js +2 -0
  36. package/dist/specifyjs.cjs.js.map +1 -0
  37. package/dist/specifyjs.d.ts +577 -0
  38. package/dist/specifyjs.esm.js +2 -0
  39. package/dist/specifyjs.esm.js.map +1 -0
  40. package/package.json +113 -0
package/package.json ADDED
@@ -0,0 +1,113 @@
1
+ {
2
+ "name": "@asymmetric-effort/specifyjs",
3
+ "version": "0.0.6",
4
+ "description": "A declarative TypeScript UI framework built for performance and simplicity",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/asymmetric-effort/specifyjs.git"
11
+ },
12
+ "homepage": "https://specifyjs.asymmetric-effort.com",
13
+ "bugs": {
14
+ "url": "https://github.com/asymmetric-effort/specifyjs/issues"
15
+ },
16
+ "author": "Asymmetric Effort, LLC",
17
+ "type": "module",
18
+ "main": "dist/specifyjs.cjs.js",
19
+ "module": "dist/specifyjs.esm.js",
20
+ "types": "dist/types/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/types/index.d.ts",
24
+ "import": "./dist/specifyjs.esm.js",
25
+ "require": "./dist/specifyjs.cjs.js"
26
+ },
27
+ "./dom": {
28
+ "types": "./dist/types/dom/index.d.ts",
29
+ "import": "./dist/specifyjs-dom.esm.js",
30
+ "require": "./dist/specifyjs-dom.cjs.js"
31
+ },
32
+ "./server": {
33
+ "types": "./dist/types/server/index.d.ts",
34
+ "import": "./dist/specifyjs-server.esm.js",
35
+ "require": "./dist/specifyjs-server.cjs.js"
36
+ },
37
+ "./jsx-runtime": {
38
+ "types": "./dist/types/jsx-runtime.d.ts",
39
+ "import": "./dist/specifyjs-jsx-runtime.esm.js",
40
+ "require": "./dist/specifyjs-jsx-runtime.cjs.js"
41
+ },
42
+ "./jsx-dev-runtime": {
43
+ "types": "./dist/types/jsx-dev-runtime.d.ts",
44
+ "import": "./dist/specifyjs-jsx-dev-runtime.esm.js",
45
+ "require": "./dist/specifyjs-jsx-dev-runtime.cjs.js"
46
+ },
47
+ "./client": {
48
+ "types": "./dist/types/client/index.d.ts",
49
+ "import": "./dist/specifyjs-client.esm.js",
50
+ "require": "./dist/specifyjs-client.cjs.js"
51
+ },
52
+ "./telemetry": {
53
+ "types": "./dist/types/telemetry/index.d.ts",
54
+ "import": "./dist/specifyjs-telemetry.esm.js",
55
+ "require": "./dist/specifyjs-telemetry.cjs.js"
56
+ },
57
+ "./components": {
58
+ "types": "./dist/specifyjs-components.d.ts",
59
+ "import": "./dist/specifyjs-components.esm.js",
60
+ "require": "./dist/specifyjs-components.cjs.js"
61
+ }
62
+ },
63
+ "files": [
64
+ "dist"
65
+ ],
66
+ "scripts": {
67
+ "build": "bun x rollup -c",
68
+ "dev": "bun x rollup -c -w",
69
+ "test": "bun x vitest run --pool forks --no-file-parallelism",
70
+ "test:watch": "bun x vitest",
71
+ "test:coverage": "bun x vitest run --pool forks --no-file-parallelism --coverage",
72
+ "test:e2e": "bun x playwright test",
73
+ "dev:e2e": "bun x vite --port 3000",
74
+ "lint": "bun x eslint src/ tests/",
75
+ "format": "bun x prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
76
+ "format:check": "bun x prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
77
+ "typecheck": "bun x tsc --noEmit",
78
+ "clean": "rm -rf dist",
79
+ "prepublishOnly": "bun run clean && bun run build"
80
+ },
81
+ "keywords": [
82
+ "ui",
83
+ "framework",
84
+ "virtual-dom",
85
+ "components",
86
+ "declarative",
87
+ "typescript"
88
+ ],
89
+ "license": "MIT",
90
+ "devDependencies": {
91
+ "@playwright/test": "^1.59.0",
92
+ "@rollup/plugin-node-resolve": "^16.0.0",
93
+ "@rollup/plugin-terser": "^1.0.0",
94
+ "@rollup/plugin-typescript": "^12.0.0",
95
+ "@types/node": "^20.0.0",
96
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
97
+ "@typescript-eslint/parser": "^8.0.0",
98
+ "@vitest/coverage-istanbul": "^4.1.5",
99
+ "@vitest/coverage-v8": "^4.1.5",
100
+ "eslint": "^9.0.0",
101
+ "jsdom": "^25.0.0",
102
+ "prettier": "^3.0.0",
103
+ "rollup": "^4.0.0",
104
+ "rollup-plugin-dts": "^6.0.0",
105
+ "tslib": "^2.6.0",
106
+ "typescript": "^5.6.0",
107
+ "vite": "^6.4.2",
108
+ "vitest": "^4.1.5"
109
+ },
110
+ "engines": {
111
+ "node": ">=18.0.0"
112
+ }
113
+ }