@dodona/papyros 0.1.0-rc → 0.1.1-rc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,8 +1,26 @@
1
1
  {
2
2
  "name": "@dodona/papyros",
3
- "version": "0.1.0-rc",
4
- "private": false,
3
+ "version": "0.1.1-rc",
4
+ "description": "Scratchpad for multiple programming languages in the browser.",
5
+ "scripts": {
6
+ "start": "webpack serve",
7
+ "build": "webpack build --mode production",
8
+ "test": "echo No tests defined yet",
9
+ "lint": "eslint --ext '.js' --ext '.ts' src"
10
+ },
11
+ "keywords": [
12
+ "programming",
13
+ "scratchpad"
14
+ ],
15
+ "author": {
16
+ "name": "Winnie De Ridder",
17
+ "email": "Winnie.DeRidder@Ugent.be",
18
+ "url": "https://github.com/winniederidder"
19
+ },
5
20
  "homepage": "https://docs.dodona.be/papyros/",
21
+ "main": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "license": "MIT",
6
24
  "devDependencies": {
7
25
  "@codemirror/language": "^0.19.5",
8
26
  "@types/codemirror": "^5.60.5",
@@ -49,35 +67,20 @@
49
67
  "comlink": "^4.3.1",
50
68
  "i18n-js": "^3.8.0"
51
69
  },
52
- "scripts": {
53
- "start": "webpack serve",
54
- "build": "webpack build --mode production",
55
- "test": "echo No tests defined yet",
56
- "lint": "eslint --ext '.js' --ext '.ts' src"
57
- },
58
70
  "babel": {
59
71
  "presets": [
60
72
  "@babel/preset-typescript"
61
73
  ]
62
74
  },
63
- "description": "Scratchpad for multiple programming languages in the browser.",
64
75
  "repository": {
65
76
  "type": "git",
66
77
  "url": "git+https://github.com/dodona-edu/papyros.git"
67
78
  },
68
- "keywords": [
69
- "programming",
70
- "scratchpad"
71
- ],
72
- "author": "Winnie De Ridder",
73
- "license": "MIT",
74
79
  "bugs": {
75
80
  "url": "https://github.com/dodona-edu/papyros/issues"
76
81
  },
77
82
  "publishConfig": {
78
83
  "registry": "https://registry.npmjs.org",
79
84
  "access": "public"
80
- },
81
- "main": "/lib/index.js",
82
- "types": "/lib/index.d.ts"
85
+ }
83
86
  }