-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
52
53
{
"name": "@chamaileon-sdk/plugin-interface",
"version": "1.1.2",
"keywords": [
"postMessage",
"interface",
"iframe"
],
"homepage": "https://github.com/EDMdesigner/plugin-interface#readme",
"bugs": {
"url": "https://github.com/EDMdesigner/plugin-interface/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EDMdesigner/plugin-interface.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/pluginInterface.js",
"require": "./dist/pluginInterface.cjs"
}
},
"main": "./dist/pluginInterface.cjs",
"module": "./dist/pluginInterface.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "npx eslint . --ext .js,.mjs,.cjs,.json,.vue --resolve-plugins-relative-to ./node_modules/@chamaileon-sdk/eslint-config",
"lint-fix": "npm run lint -- --fix",
"prepare": "husky",
"preview": "vite preview",
"serve": "vite dev --force",
"test": "npm run lint && npm run test:unit",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch"
},
"devDependencies": {
"@chamaileon-sdk/eslint-config": "^3.0.0",
"@vitest/coverage-v8": "^3.0.5",
"jsdom": "^26.0.0",
"husky": "^9.1.7",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}