-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "frameworks-lite-for-pinegrow",
"version": "0.0.1",
"description": "Pinegrow Plugin for Petite-Vue, Alpinejs and Standard-Vue",
"type": "module",
"workspaces": [
"./packages/*"
],
"author": "Ahmed Kaja (https://twitter.com/techakayy)",
"license": "MIT",
"keywords": [
"pinegrow",
"vue",
"petite-vue",
"alpinejs",
"standard-vue"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "npm run build:plugin",
"build:test": "npm-run-all --serial build:docs build:plugin",
"build:dev": "npm-run-all --serial build:docs build:plugin:dev",
"build:docs": "npm run build -w @pinegrow/docs",
"build:plugin": "npm run build -w @pinegrow/plugin",
"build:plugin:dev": "npm run dev:build -w @pinegrow/plugin",
"lint": "npm run format",
"format": "prettier --write . !public"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4"
}
}