-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (48 loc) · 1.15 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "varnam-webpage-embed-plugin",
"version": "1.0.0",
"homepage": "https://varnamproject.com",
"repository": {
"type": "git",
"url": "git+https://github.com/varnamproject/webpage-embed-plugin.git"
},
"license": "MIT",
"author": {
"name": "Subin Siby",
"email": "[email protected]",
"url": "https://subinsb.com"
},
"files": [
"dist/**/*",
"package.json"
],
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext .ts,.js --ignore-path .gitignore",
"lintfix": "eslint src --ext .ts,.js --ignore-path .gitignore --fix"
},
"dependencies": {
"webime": "1.0.2"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"terser": "^5.16.6",
"typescript": "^4.9.5",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.0.2"
}
}