Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
at 87b736ef368a36cd6d4ebbcb18d2b4b30dc67f6d 39 lines 1.2 kB view raw
1{ 2 "name": "style-mod", 3 "version": "4.1.3", 4 "description": "A minimal CSS module shim", 5 "main": "dist/style-mod.cjs", 6 "type": "module", 7 "exports": { 8 "import": "./src/style-mod.js", 9 "require": "./dist/style-mod.cjs" 10 }, 11 "module": "src/style-mod.js", 12 "types": "src/style-mod.d.ts", 13 "directories": { 14 "test": "test" 15 }, 16 "scripts": { 17 "test": "npm run build && mocha test/test-*.js", 18 "build": "mkdir -p dist; buble --no modules src/style-mod.js | sed -e 's/export var StyleModule/var StyleModule = exports.StyleModule/' > dist/style-mod.cjs; cp src/style-mod.d.ts dist/style-mod.d.cts", 19 "prepare": "npm run build && npm run build-readme", 20 "build-readme": "builddocs --name style-mod --main src/README.md --format markdown src/*.js > README.md" 21 }, 22 "keywords": [ 23 "css", 24 "module", 25 "styling" 26 ], 27 "repository": { 28 "type": "git", 29 "url": "git+https://github.com/marijnh/style-mod.git" 30 }, 31 "author": "Marijn Haverbeke <marijn@haverbeke.berlin>", 32 "license": "MIT", 33 "devDependencies": { 34 "buble": "^0.20.0", 35 "builddocs": "^0.3.2", 36 "ist": "^1.1.1", 37 "mocha": "^7.2.0" 38 } 39}