-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"name": "@altcha/tracker",
"description": "JavaScript client for ALTCHA Analytics.",
"version": "0.2.0",
"license": "MIT",
"author": {
"name": "Daniel Regeci",
"url": "https://altcha.org"
},
"homepage": "https://altcha.org",
"repository": {
"type": "git",
"url": "https://github.com/altcha-org/tracker"
},
"type": "module",
"keywords": [
"altcha",
"analytics",
"statistics",
"tracker",
"svelte"
],
"files": [
"dist",
"dist_bundle"
],
"main": "./dist/tracker.umd.cjs",
"module": "./dist/tracker.js",
"exports": {
".": {
"import": "./dist/tracker.js",
"require": "./dist/tracker.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "npm run build:module && npm run build:bundle",
"build:module": "rimraf dist && tsc && vite build -c vite.config.js",
"build:bundle": "rimraf dist_bundle && tsc && vite build -c vite.bundle.config.js",
"format": "prettier --write ./src/**/*",
"preview": "vite preview",
"test": "vitest run",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.3",
"vite": "^7.2.6",
"vitest": "^4.0.14"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.18.0"
}
}