-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 914 Bytes
/
package.json
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": "nuxt3-interpolation",
"version": "1.0.16",
"description": "",
"exports": {
".": {
"require": "./index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"index.cjs"
],
"scripts": {
"dev": "nuxi dev",
"build": "tsup",
"release": "standard-version --sign && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daliborgogic/interpolation.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/daliborgogic/interpolation/issues"
},
"homepage": "https://github.com/daliborgogic/interpolation#readme",
"dependencies": {
"@nuxt/kit": "^0.8.1-edge"
},
"devDependencies": {
"standard-version": "^9.3.2",
"tsup": "^5.7.3",
"typescript": "^4.5.2"
}
}