-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 866 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 866 Bytes
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
{
"name": "artalk-plugin-sample",
"version": "1.0.0",
"minAppVersion": "2.9.1",
"type": "module",
"main": "./dist/artalk-plugin-sample.js",
"module": "./dist/artalk-plugin-sample.mjs",
"types": "./dist/artalk-plugin-sample.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/artalk-plugin-sample.d.cts",
"default": "./dist/artalk-plugin-sample.cjs"
},
"default": {
"types": "./dist/artalk-plugin-sample.d.ts",
"default": "./dist/artalk-plugin-sample.mjs"
}
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@artalk/plugin-kit": "^1.0.6",
"typescript": "^5.6.2",
"vite": "^5.4.6"
},
"dependencies": {
"artalk": "^2.9.1"
},
"peerDependencies": {
"artalk": "^2.9.1"
}
}