-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.19 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
{
"name": "obsidian-tracker",
"version": "1.19.0",
"description": "A plugin tracks occurrences and numbers in your notes",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.dev.mjs -w",
"build": "rollup --config rollup.config.build.mjs",
"zip": "zip -9 obsidian-tracker-v$npm_package_version.zip main.js manifest.json styles.css",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "pyrochlore",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/d3": "^7.4.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"@types/sprintf-js": "^1.1.4",
"jest": "^30.2.0",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"d3": "^7.9.0",
"d3-interpolate": "^3.0.1",
"jsep": "^1.4.0",
"sprintf-js": "^1.1.3"
}
}