-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
54
55
56
57
58
59
60
{
"name": "@novacbn/svelte-codejar",
"version": "0.1.2",
"description": "Svelte Binding for the embeddable code editor CodeJar",
"author": "novacbn",
"license": "MIT",
"type": "module",
"main": "index.js",
"svelte": "index.js",
"types": "index.d.ts",
"keywords": [
"codejar",
"code-editor",
"svelte",
"svelte-components"
],
"files": [
"actions",
"components",
"types",
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/novacbn/svelte-codejar"
},
"scripts": {
"dev": "svelte-kit dev --host 0.0.0.0",
"format": "prettier --config .prettierrc --write ./",
"lint": "npm run lint:format",
"lint:format": "prettier --config .prettierrc --check ./",
"package": "npm run lint && npm run test && npm run package:lib",
"package:lib": "svelte-kit package",
"postversion": "git push && git push --tags && npm run release",
"release": "npm run package && npm run release:publish",
"release:publish": "npm publish ./package",
"test": "npm run test:types && npm run test:svelte",
"test:svelte": "svelte-check --tsconfig ./tsconfig.json",
"test:types": "tsc --noEmit"
},
"dependencies": {
"codejar": "^3.5.0",
"svelte": "^3.42.3"
},
"devDependencies": {
"@sveltejs/kit": "^1.0.0-next.292",
"@tsconfig/svelte": "^2.0.1",
"@types/prismjs": "^1.26.0",
"prettier": "^2.1.2",
"prismjs": "^1.27.0",
"svelte-check": "^2.2.5",
"svelte-preprocess": "^4.8.0",
"svelte2tsx": "^0.4.5",
"typescript": "^4.3.5"
}
}