-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 870 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 870 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
{
"name": "mokai",
"version": "0.6.1",
"type": "module",
"description": "Tiny code editor for the web",
"repository": "https://github.com/jmjuanes/mokai",
"author": "Josemi Juanes <hello@josemi.xyz>",
"bugs": "https://github.com/jmjuanes/mokai/issues",
"homepage": "https://www.josemi.xyz/mokai",
"main": "index.js",
"module": "index.js",
"exports": {
".": "./index.js",
"./index.js": "./index.js",
"./styles.css": "./styles.css",
"./mokai.js": "./index.js",
"./mokai.css": "./styles.css",
"./package.json": "./package.json"
},
"types": "./index.d.ts",
"scripts": {
"release": "node scripts/release.js"
},
"files": [
"README.md",
"LICENSE",
"styles.css",
"index.js",
"index.d.ts"
],
"license": "MIT"
}