-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1023 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1023 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
38
{
"name": "create-spellbook",
"version": "0.0.12",
"description": "This is used to create the mono-repo needed to start using spellbook. ",
"source": "index.ts",
"bin": {
"create-spellbook": "dist/index.js"
},
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "dist/types.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"devDependencies": {
"microbundle": "^0.15.1"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liltechnomancer/jamstack.consulting.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/liltechnomancer/jamstack.consulting/issues"
},
"homepage": "https://github.com/liltechnomancer/jamstack.consulting#readme",
"dependencies": {
"shelljs": "^0.8.5"
}
}