@pie-players/pie-tool-graph 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/index.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * pie-tool-graph - PIE Assessment Tool
3
+ *
4
+ * This package exports a web component built from Svelte.
5
+ * Import the built version for CDN usage, or the .svelte source for Svelte projects.
6
+ */
7
+
8
+ // Re-export any TypeScript types defined in the package
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@pie-players/pie-tool-graph",
3
+ "version": "0.1.1",
4
+ "type": "module",
5
+ "description": "Interactive coordinate grid graphing tool for PIE assessment player",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/pie-framework/pie-players.git"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "keywords": [
14
+ "pie",
15
+ "assessment",
16
+ "tool",
17
+ "graph",
18
+ "graphing",
19
+ "coordinate",
20
+ "geometry"
21
+ ],
22
+ "svelte": "./tool-graph.svelte",
23
+ "main": "./dist/tool-graph.js",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/tool-graph.js",
28
+ "svelte": "./tool-graph.svelte"
29
+ }
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "tool-graph.svelte",
34
+ "index.ts",
35
+ "package.json"
36
+ ],
37
+ "peerDependencies": {
38
+ "svelte": "^5.0.0"
39
+ },
40
+ "license": "MIT",
41
+ "unpkg": "./dist/tool-graph.js",
42
+ "jsdelivr": "./dist/tool-graph.js",
43
+ "dependencies": {
44
+ "@pie-players/pie-assessment-toolkit": "workspace:*",
45
+ "@pie-players/pie-players-shared": "workspace:*"
46
+ },
47
+ "types": "./dist/index.d.ts",
48
+ "scripts": {
49
+ "build": "vite build",
50
+ "dev": "vite build --watch",
51
+ "typecheck": "tsc --noEmit",
52
+ "lint": "biome check ."
53
+ },
54
+ "devDependencies": {
55
+ "@biomejs/biome": "^2.3.10",
56
+ "@sveltejs/vite-plugin-svelte": "^6.1.4",
57
+ "svelte": "^5.16.1",
58
+ "typescript": "^5.7.0",
59
+ "vite": "^7.0.8",
60
+ "vite-plugin-dts": "^4.5.3"
61
+ }
62
+ }