-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "svelte-trace",
"version": "0.2.0",
"description": "A Svelte 5 preprocessor that injects data attributes into DOM elements for reliable tooling and debugging.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"svelte-trace",
"svelte",
"preprocessor",
"svelte5",
"sveltekit",
"visual-editor",
"vscode",
"click-to-open",
"development-tools",
"devtools",
"developer-experience",
"tailwind"
],
"author": "Abhay Salvi <i.am.abhaysalvi@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Git002/svelte-trace.git"
},
"homepage": "https://github.com/Git002/svelte-trace#readme",
"bugs": {
"url": "https://github.com/Git002/svelte-trace/issues"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"dependencies": {
"magic-string": "^0.30.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"build:ts": "tsc -p tsconfig.build.json",
"build:assets": "cp -r src/assets dist/",
"build": "npm run clean && npm run build:ts && npm run build:assets",
"test": "echo 'Tests coming soon'",
"prepublishOnly": "npm run build"
}
}